- 浏览: 3052872 次
- 性别:
- 来自: 海外
文章分类
- 全部博客 (430)
- Programming Languages (23)
- Compiler (20)
- Virtual Machine (57)
- Garbage Collection (4)
- HotSpot VM (26)
- Mono (2)
- SSCLI Rotor (1)
- Harmony (0)
- DLR (19)
- Ruby (28)
- C# (38)
- F# (3)
- Haskell (0)
- Scheme (1)
- Regular Expression (5)
- Python (4)
- ECMAScript (2)
- JavaScript (18)
- ActionScript (7)
- Squirrel (2)
- C (6)
- C++ (10)
- D (2)
- .NET (13)
- Java (86)
- Scala (1)
- Groovy (3)
- Optimization (6)
- Data Structure and Algorithm (3)
- Books (4)
- WPF (1)
- Game Engines (7)
- 吉里吉里 (12)
- UML (1)
- Reverse Engineering (11)
- NSIS (4)
- Utilities (3)
- Design Patterns (1)
- Visual Studio (9)
- Windows 7 (3)
- x86 Assembler (1)
- Android (2)
- School Assignment / Test (6)
- Anti-virus (1)
- REST (1)
- Profiling (1)
- misc (39)
- NetOA (12)
- rant (6)
- anime (5)
- Links (12)
- CLR (7)
- GC (1)
- OpenJDK (2)
- JVM (4)
- KVM (0)
- Rhino (1)
- LINQ (2)
- JScript (0)
- Nashorn (0)
- Dalvik (1)
- DTrace (0)
- LLVM (0)
- MSIL (0)
最新评论
-
mldxs:
虽然很多还是看不懂,写的很好!
虚拟机随谈(一):解释器,树遍历解释器,基于栈与基于寄存器,大杂烩 -
HanyuKing:
Java的多维数组 -
funnyone:
Java 8的default method与method resolution -
ljs_nogard:
Xamarin workbook - .Net Core 中不 ...
LINQ的恶搞…… -
txm119161336:
allocatestlye1 顺序为 // Fields o ...
最近做的两次Java/JVM分享的概要
上周为了快速了解一个.NET的库而需要查看其类型层次。假如要在文章中表示一个类型层次,还是用文本比较舒服,截图始终是不方便。Reflector虽然能够显示类型层次,但我无法方便的把显示出来的类型层次转换为文本形式。而且,Reflector在显示基类和派生类的时候都会使用类型的全名,但有时候我只需要看到类型的简单名字。我也找过另外几个工具,例如.NET Framework SDK以前自带的Windows 窗体类查看器(Wincv.exe),但它只显示类型自身的信息以及基类的信息,而不显示派生类的信息,还是不够用。
没找到现成合用的工具,只好自己写一个了。于是就用C#/WinForms写了一个简单的GUI程序,只是用来显示类型层次信息,并且能把类型层次以文本形式复制到剪贴板。
截图一张:
对应这张截图得到的文本表示:
===========================================================================
开源形式:
该程序采用MIT形式的许可证开放源代码。程序与源码可在本帖附件的压缩包中获得。
运行环境:
由于使用了LINQ,这个程序需要.NET Framework 3.5才能正常运行。如果需要移植到.NET Framework 2.0的话,可以使用Mono的System.Core.dll的实现。
===========================================================================
使用方法:
可以从命令行提供参数来打开assembly,格式为:
ClassHierarchyViewer <assembly-path>
或者直接启动程序,并通过以下三种方式的任意一种来打开assembly:
1、在文本框中输入assembly的完整名称(Name,Version,Culture,PublicKeyToken),并按回车或点击“Load By Name”按钮;
2、按“Open File...”按钮通过对话框选取assembly;
3、从文件浏览器把assembly拖放到该程序的窗口里。
同一时间只会有一个assembly显示在窗口中。
其它功能应该不言而喻了,我就直接把readme文件的内容帖出来吧:
许可证:
现在这个简陋的程序最大的限制就是无法自如的打开GAC里的assembly,因为在Windows上安装.NET Framework之后,GAC目录默认会被Fusion管理起来,需要通过修改注册表来禁用这个功能才能看到GAC里的assembly的路径。当然,我可以扫描%WINDOWS%\Assembly\下的所有assembly,不过这个功能还没做进来;别的类似程序在扫描GAC时非常慢,所以我不太肯定要不要把这个功能做进来。现在通过强名称一样能打开GAC里的assembly,只是用户会辛苦一点了。预先放在文本框的下拉列表里的名称应该能满足一般使用需要了吧。
如果有什么意见和建议,欢迎提出。有需要请通过站内短信或者电子邮件联系,谢谢 ^ ^
没找到现成合用的工具,只好自己写一个了。于是就用C#/WinForms写了一个简单的GUI程序,只是用来显示类型层次信息,并且能把类型层次以文本形式复制到剪贴板。
截图一张:
对应这张截图得到的文本表示:
IList<T> Collection<T> KeyedCollection<TKey, TItem> List<T> ReadOnlyCollection<T>
===========================================================================
开源形式:
该程序采用MIT形式的许可证开放源代码。程序与源码可在本帖附件的压缩包中获得。
运行环境:
由于使用了LINQ,这个程序需要.NET Framework 3.5才能正常运行。如果需要移植到.NET Framework 2.0的话,可以使用Mono的System.Core.dll的实现。
===========================================================================
使用方法:
可以从命令行提供参数来打开assembly,格式为:
ClassHierarchyViewer <assembly-path>
或者直接启动程序,并通过以下三种方式的任意一种来打开assembly:
1、在文本框中输入assembly的完整名称(Name,Version,Culture,PublicKeyToken),并按回车或点击“Load By Name”按钮;
2、按“Open File...”按钮通过对话框选取assembly;
3、从文件浏览器把assembly拖放到该程序的窗口里。
同一时间只会有一个assembly显示在窗口中。
其它功能应该不言而喻了,我就直接把readme文件的内容帖出来吧:
引用
////////////////////////////////////////////////////////////////
Name: ClassHierarchyViewer
Author: RednaxelaFX (Kris Mok, rednaxela0607@hotmail.com)
Version: 0.3.0.1
Release Date: 2008-09-23
License: MIT style license. See License.txt.
////////////////////////////////////////////////////////////////
Description:
A simple tool that shows the class hierarchy within a given
.NET assembly.
Required Environment:
Windows XP or Vista, with .NET Framework 3.5 or above installed.
////////////////////////////////////////////////////////////////
Usage:
1. Start program from command line:
usage: ClassHierarchyViewer <assembly-path>
- or -
2. Start program from GUI:
Assemblies can be loaded by one of:
* enter the assembly's full name in the combobox, then click
"Load By Name" button;
* enter the assembly's full name in the combobox, and hit
Enter;
* Click "Open File..." button, and choose an assembly file;
* Drag and drop a assembly file from Explorer.
Only one assembly is active at a time.
A few commonly used BCL assemblies' names are added to the
combox already, including:
mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.AddIn, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Data.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Deployment, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac
System.Net, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
////////////////////////////////////////////////////////////////
Functions:
The GUI window is divided into 3 major components:
1. Class List Window (on the left)
Displays all types (except "<Module>") in the given assembly,
grouped by their namespaces, sorted by the type's name.
Types that are not visible outside the assembly are marked gray.
2. Class Hierarchy Window (on the upper right)
When a type is selected in the Class List Window, its type
hierarchy will be shown in this window.
The hierarchy shown includes the type itself, its base type (up
to System.Object), and all its derived types.
Checking/unchecking the "Full Name" checkbox will cause this
window to reload, showing types with their simple name/full name.
Clicking "Copy to Clipboard" button will copy the type hierarchy
to the clipboard, in text representaion.
3. Class Member Window (on the lower right)
When a type is selected in the Class Hierarchy Window, its
members will be shown in this window. This does not include
a type's nested types.
Checking/unchecking the "Use Alias" checkbox will cause this
window to reload, showing types with their alias/name.
////////////////////////////////////////////////////////////////
Known Issues:
1. TreeViews flicker when mouse moves over them rapidly.
Haven't found any solution to this, maybe that's just how
WinForms behaves.
2. Copying the type hierarchy causes flickering.
This is because of the way data is loaded: derived types are
added onto the tree when a node is expanded. To make sure
derived types are added correctly, the whole tree is expanded
before its text representation can be gathered. This will be
improved in later versions with M-V-VM pattern.
3. Properties' getter and setter methods aren't associated with
the properties' nodes.
Due to the lack of developing time, certain useful functions
such as this one is not implemented yet. Will be fixed in
later versions.
4. Doesn't show what interfaces a type implements.
Same as above. Will be fixed.
5. Cannot load an assembly from GAC just by browsing in the open
file dialog.
I know. That's why there's an alternative, to load assemblies
with their full names. Later on I might add a dialog to select
assemblies from GAC.
////////////////////////////////////////////////////////////////
Note:
The icons used in this program originated from Microsoft Visual
Studio 2008's image libraries, Visual Studio Image Library:
24bit Objects and Objects (WinVista style, .png).
Name: ClassHierarchyViewer
Author: RednaxelaFX (Kris Mok, rednaxela0607@hotmail.com)
Version: 0.3.0.1
Release Date: 2008-09-23
License: MIT style license. See License.txt.
////////////////////////////////////////////////////////////////
Description:
A simple tool that shows the class hierarchy within a given
.NET assembly.
Required Environment:
Windows XP or Vista, with .NET Framework 3.5 or above installed.
////////////////////////////////////////////////////////////////
Usage:
1. Start program from command line:
usage: ClassHierarchyViewer <assembly-path>
- or -
2. Start program from GUI:
Assemblies can be loaded by one of:
* enter the assembly's full name in the combobox, then click
"Load By Name" button;
* enter the assembly's full name in the combobox, and hit
Enter;
* Click "Open File..." button, and choose an assembly file;
* Drag and drop a assembly file from Explorer.
Only one assembly is active at a time.
A few commonly used BCL assemblies' names are added to the
combox already, including:
mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.AddIn, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Data.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Deployment, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac
System.Net, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
////////////////////////////////////////////////////////////////
Functions:
The GUI window is divided into 3 major components:
1. Class List Window (on the left)
Displays all types (except "<Module>") in the given assembly,
grouped by their namespaces, sorted by the type's name.
Types that are not visible outside the assembly are marked gray.
2. Class Hierarchy Window (on the upper right)
When a type is selected in the Class List Window, its type
hierarchy will be shown in this window.
The hierarchy shown includes the type itself, its base type (up
to System.Object), and all its derived types.
Checking/unchecking the "Full Name" checkbox will cause this
window to reload, showing types with their simple name/full name.
Clicking "Copy to Clipboard" button will copy the type hierarchy
to the clipboard, in text representaion.
3. Class Member Window (on the lower right)
When a type is selected in the Class Hierarchy Window, its
members will be shown in this window. This does not include
a type's nested types.
Checking/unchecking the "Use Alias" checkbox will cause this
window to reload, showing types with their alias/name.
////////////////////////////////////////////////////////////////
Known Issues:
1. TreeViews flicker when mouse moves over them rapidly.
Haven't found any solution to this, maybe that's just how
WinForms behaves.
2. Copying the type hierarchy causes flickering.
This is because of the way data is loaded: derived types are
added onto the tree when a node is expanded. To make sure
derived types are added correctly, the whole tree is expanded
before its text representation can be gathered. This will be
improved in later versions with M-V-VM pattern.
3. Properties' getter and setter methods aren't associated with
the properties' nodes.
Due to the lack of developing time, certain useful functions
such as this one is not implemented yet. Will be fixed in
later versions.
4. Doesn't show what interfaces a type implements.
Same as above. Will be fixed.
5. Cannot load an assembly from GAC just by browsing in the open
file dialog.
I know. That's why there's an alternative, to load assemblies
with their full names. Later on I might add a dialog to select
assemblies from GAC.
////////////////////////////////////////////////////////////////
Note:
The icons used in this program originated from Microsoft Visual
Studio 2008's image libraries, Visual Studio Image Library:
24bit Objects and Objects (WinVista style, .png).
许可证:
引用
The MIT License
Copyright (c) 2008 RednaxelaFX (Kris Mok, rednaxela0607@hotmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Copyright (c) 2008 RednaxelaFX (Kris Mok, rednaxela0607@hotmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
现在这个简陋的程序最大的限制就是无法自如的打开GAC里的assembly,因为在Windows上安装.NET Framework之后,GAC目录默认会被Fusion管理起来,需要通过修改注册表来禁用这个功能才能看到GAC里的assembly的路径。当然,我可以扫描%WINDOWS%\Assembly\下的所有assembly,不过这个功能还没做进来;别的类似程序在扫描GAC时非常慢,所以我不太肯定要不要把这个功能做进来。现在通过强名称一样能打开GAC里的assembly,只是用户会辛苦一点了。预先放在文本框的下拉列表里的名称应该能满足一般使用需要了吧。
如果有什么意见和建议,欢迎提出。有需要请通过站内短信或者电子邮件联系,谢谢 ^ ^
- ClassHierarchyViewer_0.3.zip (1 MB)
- 描述: ClassHierarchyViewer 0.3
- 下载次数: 26
- ClassHierarchyViewer_0.3.0.1.zip (1 MB)
- 描述: ClassHierarchyViewer 0.3.0.1 Minor fixes to version 0.3
- 下载次数: 49
发表评论
-
C#的任意类型转换
2010-09-22 19:37 0用之前的恶搞办法制造一个Func<T, U>委托来 ... -
timer与GC
2010-02-25 21:54 0CLR via C# 3rd的第21章讲解了GC相关的内容。其 ... -
CLR中值类型的实现,几个小测试
2009-12-07 17:35 0http://blogs.msdn.com/clrcodege ... -
Array.Copy()
2009-12-02 23:03 0using System; namespace Cons ... -
关于GC.KeepAlive()
2009-12-01 23:16 0调用GC.KeepAlive()确实跟调用自己写的NoInli ... -
native code一样的方法就是一样的么?
2009-10-10 11:42 0GC map EH SOS -
SRE里的Builder系列到Info系列的转换
2009-09-23 03:01 1706如果你试用(没错字,我就是说“试用”而不是“使用”)过Syst ... -
反射还真会挂……
2009-09-22 22:44 3099呃,CLR的反射也可以注入字符串……看来这里也有可玩的突破口 ... -
CLI中方法的局部变量声明
2009-09-15 10:36 0.locals init( int32 val ... -
要让CLR挂掉的话(第二弹)……
2009-09-04 03:26 12879(Disclaimer:如果需要转 ... -
要让CLR挂掉的话……
2009-09-02 16:53 4785(Disclaimer:如果需要转载请先与我联系。 作者:Re ... -
JIT与观察调用栈
2009-07-04 03:53 0Massimiliano Mantione在他的Chasing ... -
CLR上的接口调用也是在运行时检查的
2009-06-02 17:14 2704作者:RednaxelaFX 主页:http://rednax ... -
值类型上的实例方法
2009-05-29 22:15 0.NET里任何实例方法都有一个隐含的this作为第一个参数,无 ... -
call与callvirt、虚方法与非虚方法的组合
2009-05-29 21:31 0Chris Brumme: Virtual and non-v ... -
CLR 2.0的callsite caching
2009-05-29 01:52 0根据http://blogs.msdn.com/vancem/ ... -
.NET中各种黑历史般的名字
2009-05-24 04:29 0dotnetfx: .NET Frameworks COM+ ... -
.NET 4的新动向
2009-05-23 19:58 0http://weblog.ikvm.net/PermaLin ... -
.NET Framework 4 Beta 1与对应的IronPython 2.6的下载
2009-05-21 02:43 1818与先前报导的一致,微软在今天放出了.NET Framework ... -
自己关于VM的帖的目录
2009-04-07 14:02 69648JavaEye的blog系统只允许把帖放到单一类别下,而不能用 ...
相关推荐
Microsoft .NET Framework Reference Assemblies 食用方式:https://blog.csdn.net/IQQQQU/article/details/128284456
Microsoft .NET Framework Reference Assemblies 食用方式:https://blog.csdn.net/IQQQQU/article/details/128284456
Microsoft .NET Framework Reference Assemblies 食用方式:https://blog.csdn.net/IQQQQU/article/details/128284456
microsoft.netframework.referenceassemblies.net461.1.0.3.nupkg 食用方式:https://blog.csdn.net/IQQQQU/article/details/128284456
ASP.NET.Maker.v7.0.0.1-Keygen 序列号生成器,可以破解ASP.NET.Maker.v7.0.0.1安装后的程序。 ASP.NET Maker 能快速地从数据库连接资料来源中生成一完整的 asp.net程序。支持以下数据库:Microsoft Access, ...
.NET控件DotNetBarforVS20056.8.0.1.exe
如果你是安装MySql,并且你是...我从网站(http://rpm.pbone.net/)上下载了一个llibaio.so.1,结果就是如标题那样的。我找了好多的rpm包,最后我终于找到了一个靠谱的rpm包了。现在我分享出来,希望能够帮上大家的忙。
相关博客: 《MySQL单机部署》: https://blog.csdn.net/Zhuge_Dan/article/details/106995554 《MySQL集群方案》: https://blog.csdn.net/Zhuge_Dan/article/details/108339965
FastReport.Net+V2013.2.5+For+.Net4.0_附安装与破解_个人测试程序 1.首先安装FastReport.Net+V2013.2.5 For Net 4.0 的原始安装文件[FRNetDemo2010.msi] 2.将FastReport.Net+V2013.2.5+For+.Net4.0文件夹中的...
Managed ODP.NET Beta Now Available ODP.NET, Managed Driver is 100% fully managed. Developers can deploy a single assembly, side by side with other ODP.NET versions easily in a deployment package ...
总的来说,ASP.NET Maker v7.0.0.1 是一个强大的网页制作工具,它降低了创建专业级Web应用的门槛,尤其适合初学者和中小型企业快速构建自己的在线业务平台。通过熟练掌握这款软件,用户可以大大提高网页开发的效率,...
"S7.NET.DLL及官方指导文件.rar"提供了一个关键的工具和资源,使得使用C#语言进行西门子PLC的通信开发变得更为便捷。 S7.NET.DLL是西门子官方推出的一个动态链接库,专为C#开发者设计,用于实现与西门子Profinet ...
控件采用标准互联网协议,支持任意后台Web服务器(iis, domino, webaphere, apache等),任意后台操作系统(win2k, win2003, linux, unix等),以及任意后台编程语言(asp, asp.net, jsp, php, vb.net, c#...
This is a program to dump .NET packed applications. Of course no serious .NET protection relies on packing. In fact, this software shows how easily you can unpack a protected assemly. This .NET ...
在本文中,我们将深入探讨Agile.Net Obfuscator 6.4.0.1的主要功能、工作原理以及它如何与Delphi开发环境结合使用。 1. **什么是代码混淆** 代码混淆是将源代码转换为难以理解的形式,以增加破解和分析的难度。...
目的:解决最新Visual Studio 不支持 .NET Framework 4.0 项目解决办法。 步骤:解压到(如安装目录):C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0 查看是否成功:打开...
标题“ikvm-0.40.0.1”指的是一个特定版本的IKVM软件,这是一个开源项目,其全称为“Java Virtual Machine for .NET”。IKVM的主要功能是将Java平台上的字节码(.jar文件)转换为.NET Framework可执行的.exe或.dll...