Search Results

1
vote

What IDE is needed to develop a first time simple Windows application?

notepad + .NET Framework + cmd type: using System.Windows.Forms; public class HelloWorld { public static void Main() { MessageBox.Show("Hello, World!"); …