using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PepLib { public static class Generic { public static void Swap(ref T a, ref T b) { T c = a; a = b; b = c; } } }