System.RuntimeTypeHandle.GetDefaultConstructor C# (CSharp) Метод

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

private GetDefaultConstructor ( ) : RuntimeMethodHandle
Результат RuntimeMethodHandle
        internal RuntimeMethodHandle GetDefaultConstructor()       
        {
            return new RuntimeMethodHandle(_GetDefaultConstructor());
        }
       

Usage Example

Пример #1
0
        internal IRuntimeMethodInfo GetDefaultConstructor()
        {
            IRuntimeMethodInfo o = (IRuntimeMethodInfo)null;

            RuntimeTypeHandle.GetDefaultConstructor(this.GetNativeHandle(), JitHelpers.GetObjectHandleOnStack <IRuntimeMethodInfo>(ref o));
            return(o);
        }