Python.Runtime.MethodObject.MethodObject C# (CSharp) Method

MethodObject() public method

public MethodObject ( string name, MethodInfo info ) : System
name string
info System.Reflection.MethodInfo
return System
	public MethodObject(string name, MethodInfo[] info) : base() {
	    this.name = name;
	    this.info = info;
	    binder = new MethodBinder();
	    for (int i = 0; i < info.Length; i++) {
		binder.AddMethod((MethodInfo)info[i]);
	    }
	}