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