1 write to _text
System.Private.Xml (1)
System\Xml\Schema\XsdDateTime.cs (1)
757_text = text;
10 references to _text
System.Private.Xml (10)
System\Xml\Schema\XsdDateTime.cs (10)
977int d = _text[start] - '0'; 1039char ch = _text[start]; 1066while (start < _length && char.IsWhiteSpace(_text[start])) 1078int d4 = _text[start] - '0'; 1079int d3 = _text[start + 1] - '0'; 1080int d2 = _text[start + 2] - '0'; 1081int d1 = _text[start + 3] - '0'; 1099int d2 = _text[start] - '0'; 1100int d1 = _text[start + 1] - '0'; 1114return start < _length && _text[start] == ch;