示例#1
0
 public static void LoadInstance(string fileName)
 {
     using (var st = File.OpenRead(fileName))
         Instance = (NewsState) new BinaryFormatter().Deserialize(st);
 }
示例#2
0
 public static void CreateInstance()
 {
     Instance = new NewsState();
 }