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