I am interested what is C# analog of C++ std::pair? I have found System.Web.UI.Pair class, but wanted something template based.
Thank you!
|
2
|
I am interested what is C# analog of C++ std::pair? I have found System.Web.UI.Pair class, but wanted something template based. Thank you!
|
|||
|
|
|
|
You can use
And use it like this:
This outputs:
Or even this chained pairs:
That outputs:
|
||||||||||
|
|
|
The PowerCollections library (formerly available from Wintellect but now hosted on Codeplex @ http://powercollections.codeplex.com) has a generic Pair structure. |
||
|
|
|
|
On order to get the above to work (I needed a pair as the key of a dictionary). I had to add:
and once I did that I also added
to suppress a compiler warning. |
||||
|
|
|
The C# 4 will have tuples. |
||
|
|
|
|
I believe System.Web.UI contained the Pair class because it was used heavily in ASP.NET 1.1 as an internal ViewState structure. Tuples will be part of .net 4.0 (http://msdn.microsoft.com/en-us/magazine/dd942829.aspx) and supports generics.
|
|||
|
|
|
I created a C# implementation of Tuples, which solves the problem generically for between two and five values - here's the blog post, which contains a link to the source. |
||
|
|
|
|
I was asking the same question just now after a quick google I found that There is a pair class in .NET except its in the System.Web.UI ^ ~ ^ (http://msdn.microsoft.com/en-us/library/system.web.ui.pair.aspx) goodness knows why they put it there instead of the collections framework |
||
|
|
|
Depending on what you want to accomplish, you might want to try out KeyValuePair. The fact that you cannot change the key of an entry can of course be rectified by simply replacing the entire entry by a new instance of KeyValuePair. |
||
|
|
|
|
Unfortunately, there is none. You can use the Alternatively, you can use anonymous types to handle tuples, at least locally:
The last alternative is to create an own class. |
||
|
|
|
|
If it's about dictionaries and the like, you're looking for System.Collections.Generic.KeyValuePair<TKey, TValue>. |
||
|
|