Would it be possible to read the ReactiveX (ReactiveExtension/System.Reactive) source (C#) on VisualStudio?

Asked 2 years ago, Updated 2 years ago, 82 views

I have installed and used ReacriveX (NuGet package name: System.Reactive) on my project, and sometimes I want to make sure that I dig deeper into the methods that this library has.

So I looked for a publicly available source and found it on GitHub (https://github.com/dotnet/reactive), but it's very troublesome to dig into it.

Therefore, I would like to be able to check on MSViusualStudio for convenience.
For example, I'd like to be able to fly from the library method I'm using for my project to that definition with F12 to see what's inside.

Is there any good way?

If you just install the NuGet package, you can see the definition (signature) of the method, but you can't see what's
It is important to see the contents as well.

c# visual-studio

2022-09-30 20:25

1 Answers

As for the second best plan, I'm going to post what I found.
If there is a better way, I would appreciate it if you could post it.

  • Cloning ReactiveX from GitHub
  • Build Your Own
  • Add references to built DLLs and ReactiveX projects to your own projects

If the source is published to a source server, I could use it, but I couldn't find out about it, so I would like to refrain from using the source server (although I would like to use it).


2022-09-30 20:25

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.