Mono.VisualC.Interop.ABI.VirtualOnlyAbi.GetMethodType C# (CSharp) Méthode

GetMethodType() public méthode

public GetMethodType ( MethodInfo imethod ) : MethodType
imethod System.Reflection.MethodInfo
Résultat MethodType
        public override MethodType GetMethodType(MethodInfo imethod)
        {
            MethodType defaultType = base.GetMethodType (imethod);
            if (defaultType == MethodType.NativeCtor || defaultType == MethodType.NativeDtor)
                return MethodType.NoOp;
            return defaultType;
        }