mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fix Dictionary<T>.CopyTo
This commit is contained in:
parent
88121831e2
commit
6071582dda
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