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