Mega Code Archive
Categories
/
C# Tutorial
/
GUI Windows Forms
Cal Show method to display a form
using System.Windows.Forms; class ShowForm { public static void Main() { Form form = new Form(); form.Show(); } }