1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Make Dictionary<TKey, TValue>.Entry protected.

This commit is contained in:
ESH 2024-09-09 15:41:05 +02:00
parent b5ceaf9a4e
commit 01a45c9371

View file

@ -38,7 +38,7 @@ namespace System.Collections
typealias KeyValuePair=(TKey key, TValue value);
typealias KeyRefValuePair=(TKey key, TValue* valueRef);
private struct Entry
protected struct Entry
{
public TKey mKey; // Key of entry
public TValue mValue; // Value of entry