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