6 writes to _current
System.Data.Common (6)
System\Data\DataColumn.cs (6)
1992
set {
_current
= (BigInteger)value; }
2005
_current
= value;
2026
_current
= checked(_current - _step + value);
2035
_current
= checked(_current + _step);
2040
_current
= BigIntegerStorage.ConvertToBigInteger(value, formatProvider);
2048
_current
= v + _step;
7 references to _current
System.Data.Common (7)
System\Data\DataColumn.cs (7)
1991
get { return
_current
; }
2003
if ((
_current
== _seed) || BoundaryCheck(value))
2024
if (
_current
!= Seed)
2026
_current = checked(
_current
- _step + value);
2035
_current = checked(
_current
+ _step);
2053
((_step < 0) && (value <=
_current
)) || ((0 < _step) && (
_current
<= value));