コード例 #1
0
        static void Main(string[] args)
        {
            var finale = DLLParser.Parse(@"..\..\..\..\dllfiles"); // C:\DEV\Assemblies

            finale.ConsolePrint();

            Console.ReadLine();
        }
コード例 #2
0
 private void ParseRessourceFile(DllResource ressource)
 {
     using (DLLParser parser = new DLLParser(Configuration.GetDllPath(ressource), ressource.ToString()))
     {
         parser.GetResources();
         this.Dllstrings.AddRange(parser.Basestrings);
         this.DllXml.AddRange(parser.Xmlstrings);
     }
 }