Salamander .NET decompiler 
Salamander is a .NET decompiler that converts executable files (.EXE or .DLL) from Intermediate Language (IL) binary format to high-level source codes, such as C#, managed C++, Visual Basic.NET, etc. 
http://www.remotesoft.com/salamander/index.html

解决方案 »

  1.   

    请教一下,这些代码如
    解开了一个是这样:using AspNetForums.Components;
    using System;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;namespace AspNetForums.Controls
    {
      public class NavigationMenu : SkinnedForumWebControl
      {
        private string skinFilename = "Skin-Navigation.ascx";
                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         这些在原来的.cs中也是这样的吗?
    我右击.ascx,看到“察看代码“是灰色的,它怎么做到的?
    就是把所有的.cs编译成dll,把cs文件删除就行了?如果n个.cs文件
    怎么办?