Ejemplo n.º 1
0
        public Resources GetResources(string filePath)
        {
            Resources resources = new Resources();

            if (File.Exists(filePath))
            {
                resources = ResourcesSerializer.DeSerialize(filePath);
                resources.createIndex();
            }
            return(resources);
        }
Ejemplo n.º 2
0
        public void Init(string filePath)
        {
            FolderPath = filePath;
            DirectoryInfo directoryInfo = new DirectoryInfo(filePath);

            LanguageResources.Clear();
            if (!directoryInfo.Exists)
            {
                return;
            }
            FileInfo[] FileInfo = directoryInfo.GetFiles();
            for (int i = 0; i < FileInfo.Length; i++)
            {
                Resources resources = ResourcesSerializer.DeSerialize(FileInfo[i].FullName);
                resources.createIndex();
                LanguageResources.Add(resources.language, resources);
            }
        }
Ejemplo n.º 3
0
 public Resources GetResources(string filePath)
 {
     Resources resources = new Resources();
     if (File.Exists(filePath))
     {
         resources = ResourcesSerializer.DeSerialize(filePath);
         resources.createIndex();
     }
     return resources;
 }