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