6 lines
83 B
C#
6 lines
83 B
C#
static void Swap<T>(ref T a, ref T b)
|
|
{
|
|
T temp = a;
|
|
a = b;
|
|
b = temp;
|
|
}
|