aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Examples.MathClient
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-03-21 19:02:58 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-04-01 16:25:42 -0700
commitd8f7c8ae0e80f787b2c1791adecf35c8b0ef9171 (patch)
tree0f2296bf443a0e8758b7a2463a41061261f6e19e /src/csharp/Grpc.Examples.MathClient
parent8cd4ae9912c925725eed22a9c906c6cfcc8f7900 (diff)
migrate from client side interface to client side abstract class
Diffstat (limited to 'src/csharp/Grpc.Examples.MathClient')
-rw-r--r--src/csharp/Grpc.Examples.MathClient/MathClient.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Examples.MathClient/MathClient.cs b/src/csharp/Grpc.Examples.MathClient/MathClient.cs
index 64e429ed5a..3bea38fe98 100644
--- a/src/csharp/Grpc.Examples.MathClient/MathClient.cs
+++ b/src/csharp/Grpc.Examples.MathClient/MathClient.cs
@@ -40,7 +40,7 @@ namespace Math
public static void Main(string[] args)
{
var channel = new Channel("127.0.0.1", 23456, ChannelCredentials.Insecure);
- Math.IMathClient client = new Math.MathClient(channel);
+ Math.MathClientBase client = new Math.MathClient(channel);
MathExamples.DivExample(client);
MathExamples.DivAsyncExample(client).Wait();