namespace PepLib { public static class Generic { public static void Swap(ref T a, ref T b) { T c = a; a = b; b = c; } } }