7 writes to _pos
mscorlib (7)
system\io\stringreader.cs (7)
52
_pos
= 0;
77
return _s[
_pos
++];
102
_pos
+= n;
116
_pos
= _length;
134
_pos
= i + 1;
135
if (ch == '\r' && _pos < _length && _s[_pos] == '\n')
_pos
++;
142
_pos
= i;
16 references to _pos
mscorlib (16)
system\io\stringreader.cs (16)
66
if (
_pos
== _length) return -1;
67
return _s[
_pos
];
76
if (
_pos
== _length) return -1;
98
int n = _length -
_pos
;
101
_s.CopyTo(
_pos
, buffer, index, n);
112
if (
_pos
==0)
115
s = _s.Substring(
_pos
, _length -
_pos
);
129
int i =
_pos
;
133
String result = _s.Substring(
_pos
, i -
_pos
);
135
if (ch == '\r' &&
_pos
< _length && _s[
_pos
] == '\n') _pos++;
140
if (i >
_pos
) {
141
String result = _s.Substring(
_pos
, i -
_pos
);