DartSharp.Language.FuncMethod.FuncMethod C# (CSharp) 메소드

FuncMethod() 공개 메소드

public FuncMethod ( IType type, Func func ) : System
type IType
func Func
리턴 System
        public FuncMethod(IType type, Func<object, Context, object[], object> func)
        {
            this.type = type;
            this.func = func;
        }