views:

62

answers:

1

When I use Tuples, compile breaks. Anybody knows if it possible to use Tuples within WP7 without re-implementing?

A: 

There are quite a number of types and methods in .NET 4 and Silverlight 4 that do not appear in WP7's framework, including Tuple. That said, Tuple shouldn't be all that hard to implement.

Curt Nichols
MarkRendle has created a sample Tuple implementation (for .net 3.5) as part of his Functional Alchemy project - http://bit.ly/functionalalchemy
Matt Lacey