Made Items property virtual

pull/60/head
David Hall 2019-03-07 09:20:49 -07:00
parent dfd7f9a4a2
commit 0ff4e8c937
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ namespace Vanara.Collections
/// <summary>Gets the enumerated list of items.</summary>
/// <value>The enumerated list of items.</value>
protected IEnumerable<KeyValuePair<TKey, TValue>> Items =>
protected virtual IEnumerable<KeyValuePair<TKey, TValue>> Items =>
Keys.Select(k => new KeyValuePair<TKey, TValue>(k, this[k]));
/// <summary>Gets or sets the <see cref="TValue"/> with the specified key.</summary>