System.Reflection.FieldInfo.GetOptionalCustomModifiers C# (CSharp) Method

GetOptionalCustomModifiers() public method

public GetOptionalCustomModifiers ( ) : Type[]
return Type[]
        public virtual Type[] GetOptionalCustomModifiers()
        {
            throw new NotImplementedException();
        }

Usage Example

        static StackObject *GetOptionalCustomModifiers_21(ILIntepreter __intp, StackObject *__esp, IList <object> __mStack, CLRMethod __method, bool isNewObj)
        {
            ILRuntime.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain;
            StackObject *ptr_of_this_method;
            StackObject *__ret = ILIntepreter.Minus(__esp, 1);

            ptr_of_this_method = ILIntepreter.Minus(__esp, 1);
            System.Reflection.FieldInfo instance_of_this_method = (System.Reflection.FieldInfo) typeof(System.Reflection.FieldInfo).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack));
            __intp.Free(ptr_of_this_method);

            var result_of_this_method = instance_of_this_method.GetOptionalCustomModifiers();

            return(ILIntepreter.PushObject(__ret, __mStack, result_of_this_method));
        }
All Usage Examples Of System.Reflection.FieldInfo::GetOptionalCustomModifiers