System.RuntimeTypeHandle.GetDefaultConstructor C# (CSharp) Method

GetDefaultConstructor() private method

private GetDefaultConstructor ( ) : RuntimeMethodHandle
return RuntimeMethodHandle
        internal RuntimeMethodHandle GetDefaultConstructor()       
        {
            return new RuntimeMethodHandle(_GetDefaultConstructor());
        }
       

Usage Example

Example #1
0
        internal IRuntimeMethodInfo GetDefaultConstructor()
        {
            IRuntimeMethodInfo o = (IRuntimeMethodInfo)null;

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