예제 #1
0
 public CodeBite(string code)
 {
     Code       = code;
     _func      = RunCodeInternal;
     _exception = null;
 }
예제 #2
0
파일: CodeBite.cs 프로젝트: yushiro/beliEVE
 public CodeBite(string code)
 {
     Code = code;
     _func = RunCodeInternal;
     _exception = null;
 }
예제 #3
0
 public CodeBite(RunFunction func)
 {
     _func      = RunFuncInternal;
     _runFunc   = func;
     _exception = null;
 }
예제 #4
0
파일: CodeBite.cs 프로젝트: yushiro/beliEVE
 public CodeBite(RunFunction func)
 {
     _func = RunFuncInternal;
     _runFunc = func;
     _exception = null;
 }