static void Main(string[] args) { //Examples 폴더 안에서 Hello 클래스를 불러들여 Run 기능을 수행하라. Examples.Hello hello = new Examples.Hello(); hello.Run(); }
static void Main(string[] args) { Examples.Hello hello = new Examples.Hello(); hello.Run(); }