Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Swap()
[2/2]
static
void
System.Collections.Generic.ArraySortHelper
< TKey, TValue >.Swap
(
Span
< TKey >
keys
,
Span
< TValue >
values
,
int
i
,
int
j
)
inline
static
private
Definition at line
291
of file
ArraySortHelper.cs
.
292
{
293
TKey val =
keys
[
i
];
294
keys
[
i
] =
keys
[j];
295
keys
[j] = val;
296
TValue val2 =
values
[
i
];
297
values
[
i
] =
values
[j];
298
values
[j] = val2;
299
}
System.Text.RegularExpressions.ExceptionArgument.i
@ i
System.ExceptionArgument.keys
@ keys
System.ExceptionArgument.values
@ values
References
System.keys
, and
System.values
.
System
Collections
Generic
ArraySortHelper
Generated by
1.10.0