Equivalent of Tuple (.NET 4) for .NET Framework 3.5
No, not in .Net 3.5. But it shouldn’t be that hard to create your own. public class Tuple<T1, T2> { public T1 First { get; private set; } public T2 Second { get; private set; } internal Tuple(T1 first, T2 second) { First = first; Second = second; } } public static class Tuple { … Read more