예제 #1
0
        public static void Main(string[] args)
        {
            string path       = args [0];
            string sourceCode = File.ReadAllText(path);

            SourceAnalayzer engine     = new SourceAnalayzer();
            string          methodList = engine.GetMethodsFrom(sourceCode);

            Console.WriteLine(methodList);
        }
예제 #2
0
파일: Program.cs 프로젝트: rzaitov/Porter
        public static void Main(string[] args)
        {
            string path = args [0];
            string sourceCode = File.ReadAllText (path);

            SourceAnalayzer engine = new SourceAnalayzer ();
            string methodList = engine.GetMethodsFrom (sourceCode);

            Console.WriteLine (methodList);
        }