1 write to _enumerator
Microsoft.VisualStudio.TestPlatform.Common (1)
Utilities\SimpleJSON.cs (1)
133
public KeyEnumerator(Enumerator aEnumerator) {
_enumerator
= aEnumerator; }
2 references to _enumerator
Microsoft.VisualStudio.TestPlatform.Common (2)
Utilities\SimpleJSON.cs (2)
134
public string Current { get { return
_enumerator
.Current.Key; } }
135
public bool MoveNext() { return
_enumerator
.MoveNext(); }