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:
commit
2e97b5fb7d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue