3 writes to _lastValue
System.Windows.Forms (3)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (3)
648
_lastValue
= nativeValue.ToObject();
660
_lastValue
= Enum.ToObject(_propertyType, _lastValue);
861
_lastValue
= value;
5 references to _lastValue
System.Windows.Forms (5)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (5)
655
if (
_lastValue
is not null && _propertyType is not null && _propertyType.IsEnum &&
_lastValue
.GetType().IsPrimitive)
660
_lastValue = Enum.ToObject(_propertyType,
_lastValue
);
667
return
_lastValue
;
739
internal bool IsLastKnownValue(object? value) => value ==
_lastValue
;