1 write to _text
System.Private.Xml (1)
System\Xml\Schema\XsdDateTime.cs (1)
727_text = text;
10 references to _text
System.Private.Xml (10)
System\Xml\Schema\XsdDateTime.cs (10)
947int d = _text[start] - '0'; 1001char ch = _text[start]; 1028while (start < _length && char.IsWhiteSpace(_text[start])) 1040int d4 = _text[start] - '0'; 1041int d3 = _text[start + 1] - '0'; 1042int d2 = _text[start + 2] - '0'; 1043int d1 = _text[start + 3] - '0'; 1061int d2 = _text[start] - '0'; 1062int d1 = _text[start + 1] - '0'; 1076return start < _length && _text[start] == ch;