C# .NET Rx- Where is System.Reactive?

前端 未结 2 783
梦毁少年i
梦毁少年i 2021-02-03 21:00

I have an intensive Java background so forgive me if I\'m overlooking something obvious in C#, but my research is getting me nowhere. I am trying to use the reactive Rx .NET lib

2条回答
  •  忘了有多久
    2021-02-03 21:39

    As of version 3, the Rx project is now known as System.Reactive because it "brings the NuGet package naming in line with NuGet guidelines and also the dominant namespace in each package."

    It can be downloaded from NuGet by searching for "System.Reactive" or you can download it here: https://www.nuget.org/packages/System.Reactive/

    Here is the project's GitHub page: https://github.com/Reactive-Extensions/Rx.NET

    Package Mappings

    • Rx-Main System.Reactive
    • Rx-Core System.Reactive.Core
    • Rx-Interfaces System.Reactive.Interfaces
    • Rx-Linq System.Reactive.Linq
    • Rx-PlatformServices System.Reactive.PlatformServices
    • Rx-Testing Microsoft.Reactive.Testing

    Source

提交回复
热议问题