2 writes to _length
mscorlib (2)
system\io\stringreader.cs (2)
41
_length
= s == null? 0: s.Length;
53
_length
= 0;
7 references to _length
mscorlib (7)
system\io\stringreader.cs (7)
66
if (_pos ==
_length
) return -1;
76
if (_pos ==
_length
) return -1;
98
int n =
_length
- _pos;
115
s = _s.Substring(_pos,
_length
- _pos);
116
_pos =
_length
;
130
while (i <
_length
) {
135
if (ch == '\r' && _pos <
_length
&& _s[_pos] == '\n') _pos++;