/*
C# Programming Tips & Techniques
by Charles Wright, Kris Jamsa
Publisher: Osborne/McGraw-Hill (December 28, 2001)
ISBN: 0072193794
*/
// Form.cs -- Demonstrates creating a form in a console program
//
// Compile this program with the following command line:
// C:>csc Form.cs
using System;
using System.Windows.Forms;
namespace nsForm
{
public class clsMainForm
{
static public void Main ()
{
Application.Run(new Form());
}
}
}
|