6 writes to lastValue
System.Windows.Forms (6)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (6)
891lastValue = null; 894lastValue = pVarResult[0]; 923lastValue = GetNativeValue(component); 926lastValue = valueConverter.ConvertNativeToManaged(lastValue, this); 933lastValue = Enum.ToObject(propertyType, lastValue); 1272lastValue = value;
10 references to lastValue
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (10)
896return lastValue; 925if (this.ConvertingNativeType && lastValue != null) { 926lastValue = valueConverter.ConvertNativeToManaged(lastValue, this); 928else if (lastValue != null && propertyType != null && propertyType.IsEnum && lastValue.GetType().IsPrimitive) { 933lastValue = Enum.ToObject(propertyType, lastValue); 938return lastValue; 1017return (value == lastValue || (lastValue != null && lastValue.Equals(value)));