static StackObject *get_ILType_0(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);
            ILRuntime.Reflection.ILRuntimeType instance_of_this_method = (ILRuntime.Reflection.ILRuntimeType) typeof(ILRuntime.Reflection.ILRuntimeType).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack));
            __intp.Free(ptr_of_this_method);

            var result_of_this_method = instance_of_this_method.ILType;

            return(ILIntepreter.PushObject(__ret, __mStack, result_of_this_method));
        }
 public ILRuntimeFieldInfo(FieldDefinition def, ILRuntimeType declaredType, int fieldIdx, IType fieldType)
 {
     definition    = def;
     this.name     = def.Name;
     dType         = declaredType;
     ilType        = dType.ILType;
     appdomain     = ilType.AppDomain;
     this.isStatic = false;
     this.fieldIdx = fieldIdx;
     if (isStatic)
     {
         attr |= System.Reflection.FieldAttributes.Static;
     }
     this.fieldType = fieldType;
 }
 public ILRuntimeFieldInfo(FieldDefinition def, ILRuntimeType declaredType, bool isStatic, int fieldIdx)
 {
     definition    = def;
     this.name     = def.Name;
     dType         = declaredType;
     ilType        = dType.ILType;
     appdomain     = ilType.AppDomain;
     this.isStatic = isStatic;
     this.fieldIdx = fieldIdx;
     if (isStatic)
     {
         attr |= System.Reflection.FieldAttributes.Static;
     }
     fieldType = isStatic ? ilType.StaticFieldTypes[fieldIdx] : ilType.FieldTypes[fieldIdx];
 }