views:

42

answers:

1

Is there any way I can use the .net task parallel library that was included in the Rx extensions for .net 3.5 SP1 in xna 3.1 for xbox 360? Or, alternatively, to use the Rx extensions themselves? The assemblies installed by .net 3.5 SP1 Rx extensions installer do not appear to be compatible with the .net compact framework.

Or, if not possible with xna 3.1, is it possible with xna 4.0? I know that the Rx extensions are available for windows phone (via Microsoft.Phone.Reactive), but not for xbox360 targets. However, the task parallel library doesn't appear to be available for use on either WP7 or xbox360 targets.

+1  A: 

You can reference Microsoft.Phone.Reactive from an XNA project for the phone just like you can with a Silverlight project. Should just work... Not sure about its availability for Xbox 360, however.

Technium