Triple.cs 233 B

12345678910
  1. namespace PaintDotNet
  2. {
  3. public static class Triple
  4. {
  5. public static Triple<T, U, V> Create<T, U, V>(T first, U second, V third)
  6. {
  7. return new Triple<T, U, V>(first, second, third);
  8. }
  9. }
  10. }