6 writes to current
System.Data (6)
fx\src\data\System\Data\DataColumn.cs (6)
1839set { this.current = (Int64)value; } 1849this.current = value; 1865this.current = unchecked(this.current - this.step + value); 1873this.current = unchecked(this.current + this.step); 1877this.current = Convert.ToInt64(value, formatProvider); 1884this.current = unchecked(v + this.step);
7 references to current
System.Data (7)
fx\src\data\System\Data\DataColumn.cs (7)
1838get { return this.current; } 1848if ((this.current == this.seed) || this.BoundaryCheck(value)) { 1864if (this.current != this.Seed) { 1865this.current = unchecked(this.current - this.step + value); 1873this.current = unchecked(this.current + this.step); 1889return (((this.step < 0) && (value <= this.current)) || ((0 < this.step) && (this.current <= value)));