Reputation: 5555
I would like to look into some microsoft assemblies like "Microsoft.VisualBasic.dll" or "System.Core.dll" but dont know how to do it and if it is even possible.
I installed the .NET Reflector Extension without any help to solve my problem. Could anyone help me here.
Upvotes: 1
Views: 52
Reputation: 68750
If you're trying to take a look at .net's source code, try referencesource.microsoft.com. Although it has been available for download for ages, Microsoft recently released this browsable version (Feb 2014).
Here's the source code for the two assemblies you mentioned:
Related: A new look for .NET Reference Source
Upvotes: 1
Reputation: 171246
Reflector has a menu option called Open Global Assembly Cache
. Alternatively, search the file system for assembly names and you'll find the physical files. You can drag them into Reflector.
Upvotes: 0