PERWAPI.Feature.GetMethod C# (CSharp) Méthode

GetMethod() public méthode

public GetMethod ( MethodType mType ) : MethodDef
mType MethodType
Résultat MethodDef
        public MethodDef GetMethod(MethodType mType)
        {
            for (int i=0; i < tide; i++) {
                if (methods[i].GetMethodType() == mType)
                    return methods[i].GetMethod();
            }
            return null;
        }