본문 바로가기

프로그래밍

c# does not contain a static 'main' method suitable for an entry point



c# does not contain a static 'main' method suitable for an entry point




시작 클래스에

함수이름을 "Main" 이라고 적어줘야한다. 소문자 안돼여


namespace KGSurvey

{

    public static class clsMain

    {

        [STAThread]

        public static void Main()

        {

            frmMain main = new frmMain();

            main.ShowDialog();

        }

    }

}



'프로그래밍' 카테고리의 다른 글

mysql error 2002 로그인 에러 on mac  (0) 2017.07.12
mac mysql 설치 후 root 비밀번호 변경  (0) 2017.07.07
swift 함수 연습 3  (0) 2017.03.22
swift 함수 연습 2  (0) 2017.03.22
swift 함수 연습1  (0) 2017.03.21