1 write to _tokens
System.Private.Xml (1)
System\Xml\Xsl\Runtime\XslNumber.cs (1)
141_tokens = new List<TokenInfo?>();
11 references to _tokens
System.Private.Xml (11)
System\Xml\Xsl\Runtime\XslNumber.cs (11)
148_tokens.Add(null); 159_tokens.Add(TokenInfo.CreateFormat(formatString, idxStart, idx - idxStart)); 164_tokens.Add(TokenInfo.CreateSeparator(formatString, idxStart, idx - idxStart)); 198if (_tokens == null) 212int cFormats = _tokens.Count; 213TokenInfo? prefix = _tokens[0], suffix; 221suffix = _tokens[--cFormats]; 224TokenInfo? periodicSeparator = 2 < cFormats ? _tokens[cFormats - 2] : s_defaultSeparator; 225TokenInfo? periodicFormat = 0 < cFormats ? _tokens[cFormats - 1] : s_defaultFormat; 241TokenInfo? thisSeparator = haveFormat ? _tokens[formatIndex + 0] : periodicSeparator; 246TokenInfo? thisFormat = haveFormat ? _tokens[formatIndex + 1] : periodicFormat;