Home
Manage Your Code
Snippet: Create title (C#)
Title: Create title Language: C#
Description: test Views: 209
Author: yuna yjongjing Date Added: 9/4/2007
Copy Code  
1using System;
2using System.Collections.Generic;
3using System.Windows.Forms;
4
5namespace WindowsApplication1
6{
7    static class Program
8    {
9        /// <summary>

10        /// ??????????

11        /// </summary>

12        [STAThread]
13        static void Main()
14        {
15            Application.EnableVisualStyles();
16            Application.SetCompatibleTextRenderingDefault(false);
17            Application.Run(new Form1());
18        }
19    }
20}