1 write to _enumerator
Microsoft.VisualStudio.TestPlatform.Common (1)
Utilities\SimpleJSON.cs (1)
123public ValueEnumerator(Enumerator aEnumerator) { _enumerator = aEnumerator; }
2 references to _enumerator
Microsoft.VisualStudio.TestPlatform.Common (2)
Utilities\SimpleJSON.cs (2)
124public JSONNode Current { get { return _enumerator.Current.Value; } } 125public bool MoveNext() { return _enumerator.MoveNext(); }