C# decompilation tool ILSPY

ILSPY

ILSpy is an open source .Net assembly browser and decompilation tool.
1
Visual Studio 2022 comes with F12 decompilation support enabled by default (using our engine v7.1).
In Visual Studio 2019, you must manually enable F12 support. Go to Tools/Options/Text Editor/C#/Advanced and check "Enable navigation of decompiled sources"
C# for Visual Studio Code also comes with decompilation support. To enable, activate the setting "Enable decompilation support".

Support:
Decompile to C# (see language support status)
Full project decompilation
Search for types/methods/properties (learn about options)
Hyperlink-based type/method/property navigation
Base/derived type navigation, history
component metadata explorer (Feature Walkthrough)
BAML to XAML decompiler
ReadyToRun Binary support for .NET Core (see tutorial) Additional functionality in DEBUG builds
can be extended via plugins (for developers)

notes

reference

https://github.com/icsharpcode/ILSpy

Guess you like

Origin blog.csdn.net/lilongsy/article/details/130179189