7 writes to value
System.Web (7)
UI\WebControls\Unit.cs (7)
44this.value = value; 59this.value = (int)value; 74this.value = (int)value; 77this.value = value; 101this.value = 0; 135this.value = (Single)converter.ConvertFromString(null, culture, numericPart); 138this.value = (int)this.value;
13 references to value
System.Web (13)
UI\WebControls\Unit.cs (13)
138this.value = (int)this.value; 144if ((this.value < MinValue) || (this.value > MaxValue)) { 181return this.value; 190return HashCodeCombiner.CombineHashCodes(type.GetHashCode(), value.GetHashCode()); 205if (u.type == type && u.value == value) { 220return (left.type == right.type && left.value == right.value); 232return (left.type != right.type || left.value != right.value); 367valuePart = ((int)value).ToString(formatProvider); 370valuePart = ((float)value).ToString(formatProvider);