Reflector doesn't show class implementation

.net, reflector

Solution

You may be trying to reflect reference assemblies used by Visual Studio to provide multi-targeting support. These assemblies are metadata-only and don't have any actual implementation.

If that is the case than you can use VSCommands 2010 extension to get path to the actual assembly with implementation.

assembly details http://vscommands.com/wp-content/uploads/2011/04/image12.png

Problem

I'm trying to decompile a library but when I click on a class name or a method name, the implementation code is empty. For example: ``` public bool MethodOne(string str) { // nothing } ``` What could it be?

Original source