tags:

views:

80

answers:

2

I want see the source code of System.Web.Routing.RouteValueDictionary class. But Reflector can't disassemble it correctly.

Thanks!

A: 

Here's a pastebin link for the code I just disassembled: http://pastebin.com/c1gQpBMG

Codesleuth
Thank you very much!
ldp615
A: 

You opened the "Reference Assembles" version, which is a metadata-only version of the assembly used by Visual Studio for performance and multitargeting support. You need to open assemblies under windows\microsoft.net\framework... in order to disassemble them.

Will