System.RuntimeTypeHandle.ConstructName C# (CSharp) Method

ConstructName() private method

private ConstructName ( bool nameSpace, bool fullInst, bool assembly ) : string
nameSpace bool
fullInst bool
assembly bool
return string
        internal extern string ConstructName(bool nameSpace, bool fullInst, bool assembly);

Usage Example

コード例 #1
0
ファイル: runtimehandles.cs プロジェクト: wwkkww1983/ZJCredit
        internal string ConstructName(TypeNameFormatFlags formatFlags)
        {
            string s = (string)null;

            RuntimeTypeHandle.ConstructName(this.GetNativeHandle(), formatFlags, JitHelpers.GetStringHandleOnStack(ref s));
            return(s);
        }