1 write to nullableTypeDesc
System.Xml (1)
System\Xml\Serialization\Types.cs (1)
321
nullableTypeDesc
= new TypeDesc("NullableOf" + this.name, "System.Nullable`1[" + this.fullName + "]", null, TypeKind.Struct, this, this.flags | TypeFlags.OptionalValue, this.formatterName);
3 references to nullableTypeDesc
System.Xml (3)
System\Xml\Serialization\Types.cs (3)
320
if (
nullableTypeDesc
== null) {
322
nullableTypeDesc
.type = type;
325
return
nullableTypeDesc
;