2018년 11월 23일 금요일

[C#] Main Example



1. Main Example

1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
using System;
using System.Windows.Forms;

namespace CsLib
{
    static class Program
    {
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new FormWebViewer());
        }
    }
}


댓글 없음:

댓글 쓰기