Пример #1
0
 public static CompileCache GetInstance()
 {
     if (_instance == null)
     {
         _instance = new CompileCache();
     }
     return(_instance);
 }
Пример #2
0
 public Script()
 {
     Cache = CompileCache.GetInstance();
 }
Пример #3
0
 public static CompileCache GetInstance()
 {
     return instance ?? (instance = new CompileCache());
 }
Пример #4
0
 public Script()
 {
     _cache = CompileCache.GetInstance();
 }
Пример #5
0
 public static CompileCache GetInstance()
 {
     if (_instance == null) _instance = new CompileCache();
     return _instance;
 }
Пример #6
0
 protected Script()
 {
     Cache = CompileCache.GetInstance();
 }
Пример #7
0
 public static CompileCache GetInstance()
 {
     return(instance ?? (instance = new CompileCache()));
 }