Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a class existing in .NET Framework 3.5 that would be equivalent to the .NET 4 Tuple?

I would like to use it in order to return several values from a method, rather than create a struct.

share|improve this question
6  
Short answer is No. – Darius Kucinskas Aug 19 '11 at 11:25
Se my answer for a simple implementation of the Tuple class for two items. – Tomas Jansson Aug 19 '11 at 11:43
2  
The more I use tuples, the more I like dedicated structs -- the ambiguousness of .Item1, .Item2 is kind of annoying when you can't remember what's in there.. – Joe Aug 19 '11 at 12:03
Instead of a struct, why not return an instance of a class with the public members you want to return? I think that makes everything a little more self-documenting. As would a struct, but I personally prefer classes to structs. – ingredient_15939 Feb 4 at 8:34

4 Answers

up vote 19 down vote accepted

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
{
    public static Tuple<T1, T2> New<T1, T2>(T1 first, T2 second)
    {
        var tuple = new Tuple<T1, T2>(first, second);
        return tuple;
    }
}

UPDATE: Moved the static stuff to a static class to allow for implicit conversion. With the update you can write stuff like var tuple = Tuple.New(5, "hello"); and it will fix the types for you implicitly.

share|improve this answer
it doesn't have to be more involved, it depends on your business needs. The question says: "I would like to use it in order to return several values from a method, rather than create a struct." and you don't need comparison and equality for that. – Tomas Jansson Aug 19 '11 at 11:40

I'm using this in my pre-4 projects:

public class Tuple<T1>  
{ 
    public Tuple(T1 item1) 
    { 
        Item1 = item1; 
    }   

    public T1 Item1 { get; set; }  
} 

public class Tuple<T1, T2> : Tuple<T1>  
{ 
    public Tuple(T1 item1, T2 item2) : base(item1) 
    { 
        Item2 = item2; 
    } 

    public T2 Item2 { get; set; }  
} 

public class Tuple<T1, T2, T3> : Tuple<T1, T2>  
{ 
    public Tuple(T1 item1, T2 item2, T3 item3) : base(item1, item2) 
    { 
        Item3 = item3; 
    } 

    public T3 Item3 { get; set; }  
} 

public static class Tuple  
{ 
    public static Tuple<T1> Create<T1>(T1 item1) 
    { 
        return new Tuple<T1>(item1); 
    } 

    public static Tuple<T1, T2> Create<T1, T2>(T1 item1, T2 item2) 
    { 
        return new Tuple<T1, T2>(item1, item2); 
    } 

    public static Tuple<T1, T2, T3> Create<T1, T2, T3>(T1 item1, T2 item2, T3 item3) 
    { 
        return new Tuple<T1, T2, T3>(item1, item2, item3); 
    }  
}
share|improve this answer
2  
Why do you need Tuple<T1>? Is that even a tuple? – Tomas Jansson Oct 11 '11 at 5:57
@TomasJansson you're right:) It's not! – Hrvoje Oct 26 '11 at 6:53
Tuple<T1> also exists in .NET 4 and higher. See: msdn.microsoft.com/en-us/library/dd384265(v=vs.100) – Alex Sep 10 '12 at 14:12

In the event that you need them to have feature-parity with .Net 4.0 (primarily comparisson):

static class Tuple
{
    public static Tuple<T1, T2> Create<T1, T2>(T1 item1, T2 item2)
    {
        return new Tuple<T1, T2>(item1, item2);
    }
}

[DebuggerDisplay("Item1={Item1};Item2={Item2}")]
class Tuple<T1, T2> : IFormattable
{
    public T1 Item1 { get; private set; }
    public T2 Item2 { get; private set; }

    public Tuple(T1 item1, T2 item2)
    {
        Item1 = item1;
        Item2 = item2;
    }

    #region Optional - If you need to use in dictionaries or check equality
    private static readonly IEqualityComparer<T1> Item1Comparer = EqualityComparer<T1>.Default;
    private static readonly IEqualityComparer<T2> Item2Comparer = EqualityComparer<T2>.Default;

    public override int GetHashCode()
    {
        var hc = 0;
        if (!object.ReferenceEquals(Item1, null))
            hc = Item1Comparer.GetHashCode(Item1);
        if (!object.ReferenceEquals(Item2, null))
            hc = (hc << 3) ^ Item2Comparer.GetHashCode(Item2);
        return hc;
    }
    public override bool Equals(object obj)
    {
        var other = obj as Tuple<T1, T2>;
        if (object.ReferenceEquals(other, null))
            return false;
        else
            return Item1Comparer.Equals(Item1, other.Item1) && Item2Comparer.Equals(Item2, other.Item2);
    }
    #endregion

    #region Optional - If you need to do string-based formatting
    public override string ToString() { return ToString(null, CultureInfo.CurrentCulture); }
    public string ToString(string format, IFormatProvider formatProvider)
    {
        return string.Format(formatProvider, format ?? "{0},{1}", Item1, Item2);
    }
    #endregion
}
share|improve this answer
Nice answer. This is what i was looking for (i'm on a project where i'm stuck at 3.5). Question : your GetHashCode() implementation is (h1 << 3) ^ h2 while MS one (trought ILSpy) is (h1 << 5) + h1 ^ h2. does it really make a difference (performance wise) ? – tigrou May 15 at 13:51
@tigrou XOR should be ever so slightly faster in terms the amount of silicon that get used to do it (it's still one CPU instruction though). That is seriously overdoing micro-optimization though - feel free to use whichever you see fit. – Jonathan Dickinson May 15 at 14:41
I was thinking about possible collisions rather than time taken by to compute a hash code. – tigrou May 16 at 11:52
@tigrou I guess the only way would be to test it. – Jonathan Dickinson May 19 at 22:47

Yes, there is a class called System.Collections.Generic.KeyValuePair that does the same thing (since .NET 2.0 I think).

http://msdn.microsoft.com/en-us/library/5tbh8a42.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.