public static Dictionary <uint, string> GetStrings(string file)
        {
            ResourceReader reader = new ResourceReader(file);

            return(reader.ReadString());
        }
 public static Dictionary<uint, string> GetStrings(string file)
 {
     ResourceReader reader = new ResourceReader(file);
     return reader.ReadString();
 }
        public static Dictionary <string, byte[]> GetManifest(string file)
        {
            ResourceReader reader = new ResourceReader(file);

            return(reader.ReadManifest());
        }
 public static Dictionary<string, byte[]> GetManifest(string file)
 {
     ResourceReader reader = new ResourceReader(file);
     return reader.ReadManifest();
 }