Ejemplo n.º 1
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);
     }
 }
Ejemplo n.º 2
0
 public static string GetDllPath(DllResource ressource)
 {
     return(Path.Combine(BasePath, DllFiles[ressource]));
 }