Detach() public method

public Detach ( ) : void
return void
示例#1
0
 public void Detach()
 {
     CancelRuntimeInvokes();
     try {
         debugger.Detach();
     } catch (Exception ex) {
         Console.WriteLine(ex);
     } finally {
         running = false;
     }
 }