1 write to text
System.Xml (1)
System\Xml\Schema\XsdDateTime.cs (1)
695this.text = text;
10 references to text
System.Xml (10)
System\Xml\Schema\XsdDateTime.cs (10)
884int d = text[start] - '0'; 922char ch = text[start]; 944while(start < length && char.IsWhiteSpace(text[start])) { 953int d4 = text[start] - '0'; 954int d3 = text[start + 1] - '0'; 955int d2 = text[start + 2] - '0'; 956int d1 = text[start + 3] - '0'; 971int d2 = text[start] - '0'; 972int d1 = text[start + 1] - '0'; 984return start < length && text[start] == ch;