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();