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

Merge pull request #2029 from m910q/dictionary-entry-protected

Make Dictionary<TKey, TValue>.Entry protected.
This commit is contained in:
Brian Fiete 2024-09-09 10:33:21 -04:00 committed by GitHub
commit 2e97b5fb7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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