Python.Runtime.MethodBinder.AddMethod C# (CSharp) Méthode

AddMethod() private méthode

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

Usage Example

Exemple #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