namespace PaintDotNet { public static class Pair { public static Pair Create(T first, U second) { return new Pair(first, second); } } }