ParseArguments() 공개 메소드

public ParseArguments ( string args ) : void
args string
리턴 void
예제 #1
0
파일: compiler.cs 프로젝트: shugo/babel
 public static void Main(string[] args)
 {
     Compiler compiler = new Compiler();
     compiler.ParseArguments(args);
     compiler.Run();
 }