myty
3/10/2014 - 11:10 PM

making tuples a little easier to work with

making tuples a little easier to work with

namespace AliasFun
{
    using MyRecord = System.Tuple<string, int>;

    public class AnExample
    {
        public void Demonstrating()
        {
            var record = new MyRecord("thing", 42);
        }
    }
}