コード例 #1
0
ファイル: Interp.cs プロジェクト: BclEx/GpuStructs
 public void BackgroundError()
 {
     BgErrorMgr mgr = (BgErrorMgr)GetAssocData("tclBgError");
     if (mgr == null)
     {
         mgr = new BgErrorMgr(this);
         SetAssocData("tclBgError", mgr);
     }
     mgr.AddBgError();
 }
コード例 #2
0
ファイル: BgErrorMgr.cs プロジェクト: BclEx/GpuStructs
 internal BgError(BgErrorMgr enclosingInstance, Notifier n)
     : base(n)
 {
     EnclosingInstance = enclosingInstance;
 }
コード例 #3
0
ファイル: BgErrorMgr.cs プロジェクト: BclEx/GpuStructs
 internal BgError(BgErrorMgr enclosingInstance, Notifier n)
     : base(n)
 {
     EnclosingInstance = enclosingInstance;
 }