summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/value/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/demo/Ice/value/Client.cs')
-rwxr-xr-xcs/demo/Ice/value/Client.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cs/demo/Ice/value/Client.cs b/cs/demo/Ice/value/Client.cs
index 9d877701c53..3818ef3692b 100755
--- a/cs/demo/Ice/value/Client.cs
+++ b/cs/demo/Ice/value/Client.cs
@@ -92,7 +92,7 @@ public class Client : Ice.Application
Console.In.ReadLine();
Printer derivedAsBase = initial.getDerivedPrinter();
- Console.Out.WriteLine("The type ID of the received object is \"" + derivedAsBase.ice_id() + "\"");
+ Console.Out.WriteLine("==> The type ID of the received object is \"" + derivedAsBase.ice_id() + "\"");
Debug.Assert(derivedAsBase.ice_id().Equals("::Demo::Printer"));
Console.Out.WriteLine();
@@ -108,7 +108,7 @@ public class Client : Ice.Application
DerivedPrinter derived = (DerivedPrinter)derivedAsBase;
Console.Out.WriteLine("==> class cast to derived object succeded");
- Console.Out.WriteLine("The type ID of the received object is \"" + derived.ice_id() + "\"");
+ Console.Out.WriteLine("==> The type ID of the received object is \"" + derived.ice_id() + "\"");
Console.Out.WriteLine();
Console.Out.WriteLine("Let's print the message contained in the derived object, and");