Pair.cs 202 B

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