diff --git a/Core/Collections/VirtualDictionary.cs b/Core/Collections/VirtualDictionary.cs index 45212356..8e1c4f36 100644 --- a/Core/Collections/VirtualDictionary.cs +++ b/Core/Collections/VirtualDictionary.cs @@ -114,7 +114,7 @@ namespace Vanara.Collections /// Gets the enumerated list of items. /// The enumerated list of items. - protected IEnumerable> Items => + protected virtual IEnumerable> Items => Keys.Select(k => new KeyValuePair(k, this[k])); /// Gets or sets the with the specified key.