Mega Code Archive
Categories
/
C# by API
/
System Windows Forms
Form Show
using System.Windows.Forms; class ShowForm { public static void Main() { Form form = new Form(); form.Show(); } }