aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/csharp/GreeterClient/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/csharp/GreeterClient/Program.cs')
-rw-r--r--examples/csharp/GreeterClient/Program.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/csharp/GreeterClient/Program.cs b/examples/csharp/GreeterClient/Program.cs
new file mode 100644
index 0000000000..61c29762b1
--- /dev/null
+++ b/examples/csharp/GreeterClient/Program.cs
@@ -0,0 +1,25 @@
+using System;
+using Grpc.Core;
+using helloworld;
+
+namespace GreeterClient
+{
+ class ClientMainClass
+ {
+ public static void Main(string[] args)
+ {
+ GrpcEnvironment.Initialize();
+
+ using (Channel channel = new Channel("127.0.0.1:50051"))
+ {
+ var client = Greeter.NewStub(channel);
+ String user = "you";
+
+ var reply = client.SayHello(new HelloRequest.Builder { Name = user }.Build());
+ Console.WriteLine("Greeting: " + reply.Message);
+ }
+
+ GrpcEnvironment.Shutdown();
+ }
+ }
+}