Implemented interface member:
3 references to
Microsoft.TemplateEngine.Core (3)
VariableCollection.cs (3)
66
public ICollection<object> Values => Keys.Select(x => this
[
x]).ToList();
160
array[index++] = new KeyValuePair<string, object>(key, this
[
key]);
164
public IEnumerator<KeyValuePair<string, object>> GetEnumerator() => Keys.Select(x => new KeyValuePair<string, object>(x, this
[
x])).GetEnumerator();