diff options
author | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-04-24 09:48:16 -0400 |
---|---|---|
committer | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-04-24 09:48:16 -0400 |
commit | 68180a2b92d4d2c09a098cf6fa75f53590147f35 (patch) | |
tree | c1d823c698c37db586fc3d39121690bd8263aa1f /src/csharp/Grpc.Examples.MathServer | |
parent | 3afd92ff511f52db3ecf892d9af65053323c89cb (diff) | |
parent | 97e294aadc251c0fac5b417e55f207cedb10561e (diff) |
Merge pull request #1358 from jtattermusch/csharp_server_improvements
Improving C# server
Diffstat (limited to 'src/csharp/Grpc.Examples.MathServer')
-rw-r--r-- | src/csharp/Grpc.Examples.MathServer/MathServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Examples.MathServer/MathServer.cs b/src/csharp/Grpc.Examples.MathServer/MathServer.cs index f7429fb43f..abc7ef05e4 100644 --- a/src/csharp/Grpc.Examples.MathServer/MathServer.cs +++ b/src/csharp/Grpc.Examples.MathServer/MathServer.cs @@ -40,7 +40,7 @@ namespace math { public static void Main(string[] args) { - String host = "0.0.0.0"; + string host = "0.0.0.0"; GrpcEnvironment.Initialize(); |