mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Merge pull request #1462 from disarray2077/patch-2
Fix `Dictionary<T>.CopyTo`
This commit is contained in:
commit
e54b7f9208
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ namespace System.Collections
|
|||
|
||||
public void CopyTo(Span<KeyValuePair> kvPair)
|
||||
{
|
||||
Debug.Assert(kvPair.Length >= mCount);
|
||||
Debug.Assert(kvPair.Length >= Count);
|
||||
int idx = 0;
|
||||
for (var kv in this)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue