9 references to FormatTypeName
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\MethodBase.cs (1)
101string typeName = t.FormatTypeName();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ParameterInfo.cs (1)
105string typeName = ParameterType.FormatTypeName();
System\Reflection\Runtime\CustomAttributes\RuntimeCustomAttributeData.cs (1)
66return string.Format("[{0}({1}{2})]", AttributeType.FormatTypeName(), ctorArgs, namedArgs);
System\Reflection\Runtime\EventInfos\RuntimeEventInfo.cs (1)
117return runtimeParameterInfo.ParameterType.FormatTypeName() + " " + this.Name;
System\Reflection\Runtime\FieldInfos\NativeFormat\NativeFormatRuntimeFieldInfo.cs (1)
89return FieldRuntimeType.ToType().FormatTypeName() + " " + this.Name;
System\Reflection\Runtime\MethodInfos\RuntimeMethodHelpers.cs (2)
76string parameterTypeString = parameters[i].ParameterType.FormatTypeName(); 97sb.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)
75return this.ParameterType.FormatTypeName() + " " + this.Name;
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (1)
217sb.Append(PropertyType.FormatTypeName());