Inheritance: FirstFloor.ModernUI.Presentation.NotifyPropertyChanged
コード例 #1
0
 public static void Initialize(string forced = null)
 {
     if (Instance != null)
     {
         throw new Exception(@"Already initialized");
     }
     Instance = new SteamIdHelper(forced);
 }
コード例 #2
0
ファイル: SteamIdHelper.cs プロジェクト: gro-ove/actools
 public static SteamIdHelper Initialize(string forced = null) {
     if (Instance != null) throw new Exception(@"Already initialized");
     return Instance = new SteamIdHelper(forced);
 }