Quote:
|
How do I use .Net Reflector to find out which namespace a class, method or property is in, or to see parameter lists?
|
If you're reflecting over the .NET dll's, look up the class on MSDN. It will tell you the namespace and dll it belongs to. With that information, you can open the dll (File >> Open), expand the nodes until you find your class, then right click on the class and select "Disassemble". At that point you can see the source code. Keep in mind, however, that Reflector is converting the IL to equivalent C#, which may not be exactly what the original source file looks like.
Also, you can do a search on an assembly by clicking on it and then selecting "Search" from the View menu.