6 writes to current
System.Data (6)
fx\src\data\System\Data\DataColumn.cs (6)
1907set { this.current = (System.Numerics.BigInteger)value; } 1917this.current = value; 1933this.current = checked(this.current - this.step + value); 1941this.current = checked(this.current + this.step); 1945this.current = BigIntegerStorage.ConvertToBigInteger(value, formatProvider); 1951this.current = v + this.step;
7 references to current
System.Data (7)
fx\src\data\System\Data\DataColumn.cs (7)
1906get { return this.current; } 1916if ((this.current == this.seed) || this.BoundaryCheck(value)) { 1932if (this.current != this.Seed) { 1933this.current = checked(this.current - this.step + value); 1941this.current = checked(this.current + this.step); 1956return (((this.step < 0) && (value <= this.current)) || ((0 < this.step) && (this.current <= value)));