You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
396 B
C#

/*
* Created by SharpDevelop.
* User: windows
* Date: 27.10.2004
* Time: 17:04
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
namespace test1
{
class MainClass
{
public static void Main(string[] args)
{
// Console.WriteLine("Hello World!");
Form1 myForm = new Form1();
myForm.ShowDialog();
}
}
}