コード例 #1
0
 public static void Load()
 {
     Collection = DataLoad.Load <List <ReplaceFilter> >(FileName);
     if (Collection.Count == 0)
     {
         Init();
     }
 }
コード例 #2
0
ファイル: Rules.cs プロジェクト: megweg/chat2speech
        public static void Load()
        {
            RuleCollection = DataLoad.Load <List <Rule> >(FileName);

            if (RuleCollection.Count == 0)
            {
                Init();
            }
        }
コード例 #3
0
        public static void Load()
        {
            Collection = DataLoad.Load <List <ReplaceFilter> >(FileName);

            Resort();
        }
コード例 #4
0
ファイル: UsersController.cs プロジェクト: megweg/chat2speech
 public void Load()
 {
     IgnoredUsers = DataLoad.Load <List <string> >(FileName);
 }