6 writes to _current
System.Data.Common (6)
System\Data\DataColumn.cs (6)
1903
set {
_current
= (long)value; }
1916
_current
= value;
1937
_current
= unchecked(_current - _step + value);
1946
_current
= unchecked(_current + _step);
1951
_current
= Convert.ToInt64(value, formatProvider);
1960
_current
= unchecked(v + _step);
7 references to _current
System.Data.Common (7)
System\Data\DataColumn.cs (7)
1902
get { return
_current
; }
1914
if ((
_current
== _seed) || BoundaryCheck(value))
1935
if (
_current
!= Seed)
1937
_current = unchecked(
_current
- _step + value);
1946
_current = unchecked(
_current
+ _step);
1965
((_step < 0) && (value <=
_current
)) || ((0 < _step) && (
_current
<= value));