I noticed that the Observable.While and Observable.Prune methods are part of the Microsoft.Phone.Reactive namespace. Just curious as to why this is given these methods should be applicable to all OS?
Asked
Active
Viewed 527 times
1 Answers
3
With the April 2011 version of Rx there have been some changes, to get Prune
use TakeLast(1)
, to get While
use TakeWhile
. These changes are not in the windows phone version yet as it uses a separate version as explained here.

Matthew Finlay
- 3,354
- 2
- 27
- 32
-
+1, the WP7 ROM version is really old, much better to use the modern version – Ana Betts Mar 10 '12 at 05:07