9 references to FormatTypeName
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\MethodBase.cs (1)
101
string typeName = t.
FormatTypeName
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ParameterInfo.cs (1)
105
string typeName = ParameterType.
FormatTypeName
();
System\Reflection\Runtime\CustomAttributes\RuntimeCustomAttributeData.cs (1)
66
return string.Format("[{0}({1}{2})]", AttributeType.
FormatTypeName
(), ctorArgs, namedArgs);
System\Reflection\Runtime\EventInfos\RuntimeEventInfo.cs (1)
117
return runtimeParameterInfo.ParameterType.
FormatTypeName
() + " " + this.Name;
System\Reflection\Runtime\FieldInfos\NativeFormat\NativeFormatRuntimeFieldInfo.cs (1)
89
return FieldRuntimeType.ToType().
FormatTypeName
() + " " + this.Name;
System\Reflection\Runtime\MethodInfos\RuntimeMethodHelpers.cs (2)
76
string parameterTypeString = parameters[i].ParameterType.
FormatTypeName
();
97
sb.Append(returnParameter == null ? "Void" : returnParameter.ParameterType.
FormatTypeName
()); // ConstructorInfos allowed to pass in null rather than craft a ReturnParameterInfo that's always of type void.
System\Reflection\Runtime\ParameterInfos\RuntimeParameterInfo.cs (1)
75
return this.ParameterType.
FormatTypeName
() + " " + this.Name;
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (1)
217
sb.Append(PropertyType.
FormatTypeName
());