コード例 #1
0
        public static Dictionary <uint, string> GetStrings(string file)
        {
            ResourceReader reader = new ResourceReader(file);

            return(reader.ReadString());
        }
コード例 #2
0
 public static Dictionary<uint, string> GetStrings(string file)
 {
     ResourceReader reader = new ResourceReader(file);
     return reader.ReadString();
 }
コード例 #3
0
        public static Dictionary <string, byte[]> GetManifest(string file)
        {
            ResourceReader reader = new ResourceReader(file);

            return(reader.ReadManifest());
        }
コード例 #4
0
 public static Dictionary<string, byte[]> GetManifest(string file)
 {
     ResourceReader reader = new ResourceReader(file);
     return reader.ReadManifest();
 }