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