Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- try
- {
- Debug.Print("A");
- var task = connection.OpenAsync();
- Debug.Print("B");
- await task;
- Debug.Print("C");
- }
- catch (Exception ex)
- {
- Debug.Print("D:" + ex.ToString());
- throw;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement