class Program{
    static void Main(string [] args){
    }
}

c# 프로그램 실행시 가장 먼저 실행되는 메소드

메소드의 이름은 반드시 Main이어야 한다

정적메소드여야 한다.

매개변수 : string 배열 or 없음

반환값 : void or int

class Program{
    static int Main(){
    	Console.WriteLine("실행");
        return 0;
    }
}

 

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

as, is 연산자  (0) 2020.03.20
객체지향 - 3  (0) 2020.03.20
객체지향 -2  (0) 2020.03.20
객체지향-1  (0) 2020.03.19
break, continue, goto  (0) 2020.03.19

WRITTEN BY
beautifulhill

,