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