예제 #1
0
파일: climaker.cs 프로젝트: sdmckenzie/core
    public Context(test_kind k, params object[] args)
    {
        kind = k;
		factory = new Factory(k, args);
    }
예제 #2
0
파일: climaker.cs 프로젝트: zzz99977/core
 public Factory(Context.test_kind k, params object[] args)
 {
     kind2 = k;
     if (k == Context.test_kind.TEST_EXCEPTION)
         exception = (ucss.uno.Exception) args[0];
 }