namespace KYFramework { public static class ObjectHelper { public static void Swap(ref T t1, ref T t2) { T t3 = t1; t1 = t2; t2 = t3; } } }