Guest User

Untitled

a guest
Nov 23rd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. private static async Task InvokeIntoSilo()
  2. {
  3. using (var grainClient = await CreateGrainClientAsync())
  4. {
  5. await grainClient.GetGrain<IHelloGrain>(Guid.Empty)
  6. .SayHello("Scott Rangeley");
  7. }
  8. }
Add Comment
Please, Sign In to add comment