namespace DataTablePrettyPrinter { /// /// A utility class with miscellaneous methods. /// internal static class Utilities { /// /// Swaps the values of and . /// /// /// /// The type of the values to swap. /// /// /// /// The value to swap with . /// /// /// /// The value to swap with . /// internal static void Swap(ref T x, ref T y) { T z = x; x = y; y = z; } } }