System.Reflection.RuntimeConstructorInfo.RuntimeConstructorInfo C# (CSharp) Метод

RuntimeConstructorInfo() приватный Метод

private RuntimeConstructorInfo ( RuntimeMethodHandle handle, RuntimeTypeHandle declaringTypeHandle, System.RuntimeType.RuntimeTypeCache reflectedTypeCache, MethodAttributes methodAttributes, BindingFlags bindingFlags ) : System
handle System.RuntimeMethodHandle
declaringTypeHandle System.RuntimeTypeHandle
reflectedTypeCache System.RuntimeType.RuntimeTypeCache
methodAttributes MethodAttributes
bindingFlags BindingFlags
Результат System
        internal RuntimeConstructorInfo(
            RuntimeMethodHandle handle, RuntimeTypeHandle declaringTypeHandle, RuntimeTypeCache reflectedTypeCache,
            MethodAttributes methodAttributes, BindingFlags bindingFlags)
        {
            ASSERT.POSTCONDITION(methodAttributes == handle.GetAttributes());

            m_bindingFlags = bindingFlags;
            m_handle = handle;
            m_reflectedTypeCache = reflectedTypeCache;
            m_declaringType = declaringTypeHandle.GetRuntimeType();
            m_parameters = null; // Created lazily when GetParameters() is called.
            m_toString = null;
            m_methodAttributes = methodAttributes;
        }
        #endregion

Same methods

RuntimeConstructorInfo::RuntimeConstructorInfo ( ) : System