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);
        }