From 58ed88d2f3584c336cf62de17f6c4e927a2867a9 Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 6 Oct 2023 18:52:07 +0200 Subject: [PATCH] Fix review comments --- csharp/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/csharp/README.md b/csharp/README.md index 12423ad15c1..30996bab6eb 100644 --- a/csharp/README.md +++ b/csharp/README.md @@ -30,7 +30,7 @@ hello.sayHello(); ```csharp // Server application - using(var communicator = Ice.Util.initialize(ref args)) +using(var communicator = Ice.Util.initialize(ref args)) // Shut down the communicator on Ctrl+C or Ctrl+Break. Console.CancelKeyPress += (sender, eventArgs) => @@ -39,7 +39,9 @@ Console.CancelKeyPress += (sender, eventArgs) => communicator.shutdown(); }; -var adapter = communicator.createObjectAdapterWithEndpoints("Hello", "default -h localhost -p 10000"); +var adapter = communicator.createObjectAdapterWithEndpoints( + "Hello", + "default -h localhost -p 10000"); adapter.add(new Printer(), Ice.Util.stringToIdentity("hello")); adapter.activate(); communicator.waitForShutdown();