コード例 #1
0
ファイル: CompileCache.cs プロジェクト: erendrake/kRISC
 public static CompileCache GetInstance()
 {
     if (_instance == null)
     {
         _instance = new CompileCache();
     }
     return(_instance);
 }
コード例 #2
0
 public Script()
 {
     _cache = CompileCache.GetInstance();
 }