ToString() public méthode

Returns a System.String that represents the current window.
public ToString ( ) : string
Résultat string
 /// <summary>
 /// Starts the teardown sequence for the current window.
 /// </summary>
 void DestroyWindow()
 {
     if (Exists)
     {
         Debug.Print("Destroying window: {0}", window.ToString());
         Functions.DestroyWindow(window.WindowHandle);
         exists = false;
     }
 }