Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5.  
  6. namespace SimpleAsyncFunction
  7. {
  8. public class Program
  9. {
  10. public static void Main(string[] args)
  11. {
  12. var responseTask = new Function().FunctionHandlerAsync("hoge", null);
  13. var response = responseTask.Result;
  14. Console.WriteLine(response);
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement