6 writes to _current
System.Data.Common (6)
System\Data\DataColumn.cs (6)
1984
set {
_current
= (BigInteger)value; }
1997
_current
= value;
2018
_current
= checked(_current - _step + value);
2027
_current
= checked(_current + _step);
2032
_current
= BigIntegerStorage.ConvertToBigInteger(value, formatProvider);
2040
_current
= v + _step;
7 references to _current
System.Data.Common (7)
System\Data\DataColumn.cs (7)
1983
get { return
_current
; }
1995
if ((
_current
== _seed) || BoundaryCheck(value))
2016
if (
_current
!= Seed)
2018
_current = checked(
_current
- _step + value);
2027
_current = checked(
_current
+ _step);
2045
((_step < 0) && (value <=
_current
)) || ((0 < _step) && (
_current
<= value));