Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

using .Net Reflector

Status
Not open for further replies.

thedougster

Programmer
Jan 22, 2009
56
US
Please forgive what is surely a stupid question:

How do I use .Net Reflector to find out which namespace a class, method or property is in, or to see parameter lists? There's no way to enter a character string to tell it what you're looking for.
 
You can use object.GetType()...

There are several members under GetType (intellisense will display them) that can be used to find out information on the object through reflection.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top