Jonathan Beerhalter
Jonathan Beerhalter

Reputation: 7407

Where is IEnumerable.Do in Rx v4.0?

I'm in the process of upgrading to Rx v4.0(since we're also upgrading to the .Net Framework 4.0), and I can't figure out where the extension method IEnumerable.Do went. Is it gone?

Upvotes: 1

Views: 318

Answers (2)

Aleš Roubíček
Aleš Roubíček

Reputation: 5187

The distribution of Interactive Extensions (backported extensions for IEnumerable) was separated after gold release of Reactive Extensions.

Just install NuGet package Install-Package Ix_Experimental-Main it'll work again.

Upvotes: 1

Bart De Smet
Bart De Smet

Reputation: 71

Download Interactive Extensions instead, here: http://www.microsoft.com/download/en/details.aspx?id=27203

Upvotes: 1

Related Questions