Browse Source

Removed shutdown call for from 'Dialog' example

Thomas Nind 3 years ago
parent
commit
bf1fa42f8b
1 changed files with 0 additions and 1 deletions
  1. 0 1
      docfx/articles/overview.md

+ 0 - 1
docfx/articles/overview.md

@@ -346,7 +346,6 @@ var entry = new TextField () {
 };
 dialog.Add (entry);
 Application.Run (dialog);
-Application.Shutdown ();
 if (okpressed)
     Console.WriteLine ("The user entered: " + entry.Text);
 ```