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