Pair.cs 336 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SmartCoalApplication.Base
  7. {
  8. public static class Pair
  9. {
  10. public static Pair<T, U> Create<T, U>(T first, U second)
  11. {
  12. return new Pair<T, U>(first, second);
  13. }
  14. }
  15. }