Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a tool where you can edit a .NET dll directly? [closed]

Tags:

.net

dll

Is there a tool where you can edit a .NET dll directly? .net reflector allows you to view the dll but doesn't allow you to modify it directly.

like image 489
sean Avatar asked Dec 07 '22 07:12

sean


2 Answers

Reflexil

like image 77
GONeale Avatar answered Mar 03 '23 07:03

GONeale


I recommend dnSpy. After hours tinkering with Reflexil to no avail, I discovered dnSpy and solved my problem in 5 minutes.

It elegantly integrates the decompiler, assembly editor, and hex editor, allowing you to make very specific changes, even in assemblies that won't recompile (due to obfuscation, signing, etc).

like image 30
Codure Avatar answered Mar 03 '23 08:03

Codure