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;
|
|
}
|
|
}
|
|
}
|