コード例 #1
0
ファイル: Presidentes.cs プロジェクト: noedelarosa/SIC
 public static void Clear()
 {
     _Presidente.Lista = null;
     _Presidente = null;
 }
コード例 #2
0
ファイル: Presidentes.cs プロジェクト: noedelarosa/SIC
 public static Presidentes GetInstance() {
     if (_Presidente == null) _Presidente = new Presidentes();
     return _Presidente;
 }