2017-05-22 03:27:32 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2017-07-22 19:27:41 +00:00
|
|
|
|
namespace Glove {
|
2017-05-22 03:27:32 +00:00
|
|
|
|
public static class Utils {
|
|
|
|
|
public static void Swap<T>(ref T a, ref T b) {
|
|
|
|
|
T c = a;
|
|
|
|
|
a = b;
|
|
|
|
|
b = c;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|