Triple.cs 367 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 Triple
  9. {
  10. public static Triple<T, U, V> Create<T, U, V>(T first, U second, V third)
  11. {
  12. return new Triple<T, U, V>(first, second, third);
  13. }
  14. }
  15. }