Ejemplo n.º 1
0
 public static CompileCache GetInstance()
 {
     if (_instance == null)
     {
         _instance = new CompileCache();
     }
     return(_instance);
 }
Ejemplo n.º 2
0
 public Script()
 {
     Cache = CompileCache.GetInstance();
 }
Ejemplo n.º 3
0
 public static CompileCache GetInstance()
 {
     return instance ?? (instance = new CompileCache());
 }
Ejemplo n.º 4
0
 public Script()
 {
     _cache = CompileCache.GetInstance();
 }
Ejemplo n.º 5
0
 public static CompileCache GetInstance()
 {
     if (_instance == null) _instance = new CompileCache();
     return _instance;
 }
Ejemplo n.º 6
0
 protected Script()
 {
     Cache = CompileCache.GetInstance();
 }
Ejemplo n.º 7
0
 public static CompileCache GetInstance()
 {
     return(instance ?? (instance = new CompileCache()));
 }