show/hide this revision's text 4 added 79 characters in body

In my opinion, the anonymous types feature is not a tuple, but a very similar construct. The output of some LINQ Queries are collections of anonymous types, which behaves behave like tuples.

Here is a statement, which creates a typed tuple :-) on the fly:

var p1 = new {a = "A", b = 3};

see: http://www.developer.com/net/csharp/article.php/3589916

show/hide this revision's text 3 added 5 characters in body

In my opinion, the anonymous types feature is not a tuple, but very similar construct. All The output of some LINQ Queries are collections of anonymous types, which behaves like tuples.

Here is a statement, which creates a typed tuple :-) on the fly:

var p1 = new {a = "A", b = 3};

see:http://www.developer.com/net/csharp/article.php/3589916

show/hide this revision's text 2 added 102 characters in body

In my opinion, the anonymous types feature is not a tuple, but very similar construct. All output of LINQ Queries are collections of anonymous types, which behaves like tuples.

Here is a statement, which creates a typed tuple :-) on the fly:

var p1 = new {a = "A", b = 3};

see:var p1 = new {Name = "A", Price = 3};http://www.developer.com/net/csharp/article.php/3589916

show/hide this revision's text 1