6 writes to _current
System.Data.Common (6)
System\Data\DataColumn.cs (6)
1911
set {
_current
= (long)value; }
1924
_current
= value;
1945
_current
= unchecked(_current - _step + value);
1954
_current
= unchecked(_current + _step);
1959
_current
= Convert.ToInt64(value, formatProvider);
1968
_current
= unchecked(v + _step);
7 references to _current
System.Data.Common (7)
System\Data\DataColumn.cs (7)
1910
get { return
_current
; }
1922
if ((
_current
== _seed) || BoundaryCheck(value))
1943
if (
_current
!= Seed)
1945
_current = unchecked(
_current
- _step + value);
1954
_current = unchecked(
_current
+ _step);
1973
((_step < 0) && (value <=
_current
)) || ((0 < _step) && (
_current
<= value));