コード例 #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);
        }