ApplyVarargs() 공개 추상적인 메소드

public abstract ApplyVarargs ( Continuation k, object args ) : object
k Continuation
args object
리턴 object
예제 #1
0
파일: Driver.cs 프로젝트: tonyg/newmoon
 public object vCallScheme(Module m, Closure c, object[] args)
 {
     return c.ApplyVarargs(new ToplevelContinuation(m), args);
 }