5 writes to _index
System.Web.Extensions (5)
Script\Serialization\JavaScriptString.cs (5)
23
char c = _s[
_index
++];
34
return _s[
_index
++];
43
_index
+= count;
53
_index
--;
59
_index
--;
14 references to _index
System.Web.Extensions (14)
Script\Serialization\JavaScriptString.cs (14)
22
while (_s.Length >
_index
) {
33
if (_s.Length >
_index
) {
41
if (_s.Length >=
_index
+ count) {
42
string result = _s.Substring(
_index
, count);
52
if (
_index
> 0) {
58
while (
_index
> 0 && count > 0) {
65
if (_s.Length >
_index
) {
66
return _s.Substring(
_index
);
73
return message + " (" +
_index
+ "): " + _s;
77
if (_s.Length >
_index
) {
78
return _s.IndexOf(substr,
_index
, StringComparison.CurrentCulture) -
_index
;
85
if (_s.Length >
_index
+ length) {
86
return _s.Substring(
_index
, length);