CreateAndInject
CreateAndInject
@dblock The error is what thoemmi said, you can run my code and you can find what error.
Seems produced in the latest commit : https://github.com/icsharpcode/ILSpy/commit/6584a2f5763256e2298dd9b5d859d7bb95ac4193
Build following code and delete .pdb file ``` internal class Program { static void Main(string[] args) { Product product = null; foreach (var pro in Products) { if (pro !=...
Some more: `Program.smethod_0` `Program.smethod_4` `LoginForm.Button4_Click` `LoginForm.LinkLabel3_LinkClicked` `LoginForm.LoginForm_Load`
Why don't you download? If you worry about viruses, you can : Assembly.LoadFrom(target) or just add it as reference in Visual Studio,the "target" is not format well, so it will...
The source file is normal, and the target is normal by dnlib, but the target is not format well by Mono.Cecil.
This file is dumped from memory, but this is not impormat, because it's runnable and have been unpacked, and the target by Mono.Cecil is not format well, and it will...
@atsushieno Why are you so obstinate? @jbevain I have found this bug: If PublicKey is null but Cor20HeaderFlags has StrongNameSigned, the StrongNameSignature RVA and Size can not be 0. So,...
Mono.Cecil.PE/ImageWriter.cs line 777: if (public_key.IsNullOrEmpty ()) return 0; ====> if (public_key.IsNullOrEmpty()) return (module.Attributes & ModuleAttributes.StrongNameSigned) != 0 ? 128 : 0;