14 references to WhitespaceChars
System.Xaml (14)
System\Xaml\Parser\GenericTypeNameScanner.cs (6)
359
Debug.Assert(KnownStrings.
WhitespaceChars
.Length == 5);
361
if (ch == KnownStrings.
WhitespaceChars
[0] ||
362
ch == KnownStrings.
WhitespaceChars
[1] ||
363
ch == KnownStrings.
WhitespaceChars
[2] ||
364
ch == KnownStrings.
WhitespaceChars
[3] ||
365
ch == KnownStrings.
WhitespaceChars
[4])
System\Xaml\Parser\MeScanner.cs (8)
509
result = result.TrimEnd(KnownStrings.
WhitespaceChars
);
510
result = result.TrimStart(KnownStrings.
WhitespaceChars
);
552
Debug.Assert(KnownStrings.
WhitespaceChars
.Length == 5);
554
if (ch == KnownStrings.
WhitespaceChars
[0] ||
555
ch == KnownStrings.
WhitespaceChars
[1] ||
556
ch == KnownStrings.
WhitespaceChars
[2] ||
557
ch == KnownStrings.
WhitespaceChars
[3] ||
558
ch == KnownStrings.
WhitespaceChars
[4])