PEAPI.ClassRef.AddMethod C# (CSharp) Method

AddMethod() public method

Add a method to this class
public AddMethod ( string name, Type retType, Type pars ) : MethodRef
name string method name
retType Type return type
pars Type parameter types
return MethodRef
		public MethodRef AddMethod(string name, Type retType, Type[] pars) 
		{
			return AddMethod (name, retType, pars, 0);
		}
		

Same methods

ClassRef::AddMethod ( string name, Type retType, Type pars, int gen_param_count ) : MethodRef