PERWAPI.Class.GetMethodDesc C# (CSharp) Méthode

GetMethodDesc() public méthode

Get the descriptor for the method "name" of this class
public GetMethodDesc ( string name ) : Method
name string The name of the method to be retrieved
Résultat Method
        public Method GetMethodDesc(string name)
        {
            for (int i=0; i < methods.Count; i++) {
                if (((Method)methods[i]).HasName(name))
                    return (Method)methods[i];
            }
            return null;
        }

Same methods

Class::GetMethodDesc ( string name, Type parTypes ) : Method
Class::GetMethodDesc ( string name, Type parTypes, Type optParTypes ) : Method