ojek
ojek

Reputation: 10088

Finding proper references for a method

In my visual studio 2012 project, I am using a nuget package. This package brings a lot of references with it.

Now, in my project, I need to use a method, I know this method exists, because it is one of the essential methods for this package. The problem is, that I don't know what to reference in my class file, in order to use this method. Is there any way of finding a method inside of a reference in order to properly add this reference to my class file? How do I approach this?

Upvotes: 0

Views: 42

Answers (1)

SLaks
SLaks

Reputation: 888077

Look at the assemblies in the object browser to find the class you're looking for.

Upvotes: 1

Related Questions