Advertisement
Guest User

Untitled

a guest
Feb 12th, 2014
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. try
  2. {
  3. Debug.Print("A");
  4. var task = connection.OpenAsync();
  5. Debug.Print("B");
  6. await task;
  7. Debug.Print("C");
  8. }
  9. catch (Exception ex)
  10. {
  11. Debug.Print("D:" + ex.ToString());
  12. throw;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement