8d9aebb83f
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
207 B
C#
13 lines
207 B
C#
namespace OpenNest.Math
|
|
{
|
|
public static class Generic
|
|
{
|
|
public static void Swap<T>(ref T a, ref T b)
|
|
{
|
|
T c = a;
|
|
a = b;
|
|
b = c;
|
|
}
|
|
}
|
|
}
|