Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# console create window

using System.Windows.Forms;

[STAThread]
static void Main() {
    Application.EnableVisualStyles();
    Application.Run(new Form()); // or whatever
}
 
PREVIOUS NEXT
Tagged: #console #create #window
ADD COMMENT
Topic
Name
1+5 =