Implemented interface member:
4 references to Keys
Microsoft.TemplateEngine.Core (4)
VariableCollection.cs (4)
49public int Count => Keys.Count; 66public ICollection<object> Values => Keys.Select(x => this[x]).ToList(); 153foreach (string key in Keys) 164public IEnumerator<KeyValuePair<string, object>> GetEnumerator() => Keys.Select(x => new KeyValuePair<string, object>(x, this[x])).GetEnumerator();