12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication.Base
- {
- public static class Pair
- {
- public static Pair<T, U> Create<T, U>(T first, U second)
- {
- return new Pair<T, U>(first, second);
- }
- }
- }
|