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