1 write to _charsEntered
PresentationFramework (1)
src\Framework\System\Windows\Controls\TextSearch.cs (1)
701_charsEntered = new List<string>(10);
11 references to _charsEntered
PresentationFramework (11)
src\Framework\System\Windows\Controls\TextSearch.cs (11)
229if (_charsEntered.Count > 0 230&& (String.Compare(_charsEntered[_charsEntered.Count - 1], nextChar, true, GetCulture(_attachedTo))==0)) 293if (_charsEntered.Count > 0) 295string lastChar = _charsEntered[_charsEntered.Count - 1]; 298_charsEntered.RemoveAt(_charsEntered.Count - 1); 575_charsEntered.Add(newChar); 699if (_charsEntered == null) 705_charsEntered.Clear();