remove unused example

pull/1648/head
Jan Tattermusch 10 years ago
parent 43dc50beb2
commit acfcfeffb6
  1. 7
      src/csharp/Grpc.Examples/MathExamples.cs

@ -51,13 +51,6 @@ namespace math
Console.WriteLine("DivAsync Result: " + result); Console.WriteLine("DivAsync Result: " + result);
} }
public static async Task DivAsyncWithCancellationExample(Math.IMathClient stub)
{
Task<DivReply> resultTask = stub.DivAsync(new DivArgs.Builder { Dividend = 4, Divisor = 5 }.Build());
DivReply result = await resultTask;
Console.WriteLine(result);
}
public static async Task FibExample(Math.IMathClient stub) public static async Task FibExample(Math.IMathClient stub)
{ {
var call = stub.Fib(new FibArgs.Builder { Limit = 5 }.Build()); var call = stub.Fib(new FibArgs.Builder { Limit = 5 }.Build());

Loading…
Cancel
Save