System.Runtime.InteropServices.PreserveSigAttribute.GetCustomAttribute C# (CSharp) Метод

GetCustomAttribute() статический приватный Метод

static private GetCustomAttribute ( RuntimeMethodInfo method ) : Attribute
method RuntimeMethodInfo
Результат System.Attribute
        internal static Attribute GetCustomAttribute(RuntimeMethodInfo method) 
        { 
            if ((method.GetMethodImplementationFlags() & MethodImplAttributes.PreserveSig) == 0)
                return null;

            return new PreserveSigAttribute();
        }