Python.Runtime.MethodBinder.AddMethod C# (CSharp) Method

AddMethod() private method

private AddMethod ( MethodBase m ) : void
m System.Reflection.MethodBase
return void
	internal void AddMethod(MethodBase m) {
	    this.list.Add(m);
	}

Usage Example

Example #1
0
	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]);
	    }
	}
All Usage Examples Of Python.Runtime.MethodBinder::AddMethod