DartSharp.Language.FuncMethod.FuncMethod C# (CSharp) Method

FuncMethod() public method

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