1 write to simpleType
System (1)
compmod\system\componentmodel\NullableConverter.cs (1)
34this.simpleType = Nullable.GetUnderlyingType(type);
8 references to simpleType
System (8)
compmod\system\componentmodel\NullableConverter.cs (8)
35if (this.simpleType == null) { 39this.simpleTypeConverter = TypeDescriptor.GetConverter(this.simpleType); 46if (sourceType == this.simpleType) { 61if (value == null || value.GetType() == this.simpleType) { 80if (destinationType == this.simpleType) { 102if (destinationType == this.simpleType && this.nullableType.IsInstanceOfType(value)) { 106ConstructorInfo ci = nullableType.GetConstructor(new Type[] {simpleType}); 262return simpleType;