1 write to _text
System.Private.Xml (1)
System\Xml\Schema\XsdDateTime.cs (1)
745_text = text;
10 references to _text
System.Private.Xml (10)
System\Xml\Schema\XsdDateTime.cs (10)
965int d = _text[start] - '0'; 1027char ch = _text[start]; 1054while (start < _length && char.IsWhiteSpace(_text[start])) 1066int d4 = _text[start] - '0'; 1067int d3 = _text[start + 1] - '0'; 1068int d2 = _text[start + 2] - '0'; 1069int d1 = _text[start + 3] - '0'; 1087int d2 = _text[start] - '0'; 1088int d1 = _text[start + 1] - '0'; 1102return start < _length && _text[start] == ch;