5 references to GetClrTypeFullName
mscorlib (5)
system\runtime\serialization\formatters\binary\binaryformatter.cs (2)
247
return new TypeInformation(FormatterServices.
GetClrTypeFullName
(t), assemblyName2, hasTypeForwardedFrom2);
257
typeInformation = new TypeInformation(FormatterServices.
GetClrTypeFullName
(type), assemblyName, hasTypeForwardedFrom);
system\runtime\serialization\formatterservices.cs (3)
507
return String.Format(CultureInfo.InvariantCulture, "{0}{1}",
GetClrTypeFullName
(type.GetElementType()), "[]");
511
StringBuilder builder = new StringBuilder(
GetClrTypeFullName
(type.GetElementType())).Append("[");
531
builder.Append("[").Append(
GetClrTypeFullName
(genericArgument)).Append(", ");