Geoffrey Horsington

Results 88 comments of Geoffrey Horsington

Ah, I see the problem now. Please try out this version instead and see if it helps [Cecil.Inject_fix.zip](https://github.com/denikson/Mono.Cecil.Inject/files/3074756/Cecil.Inject_fix.zip)

I see. Thanks for the information. I'm going to update the official build soon to fix the problem. Until that, I'm going to keep this issue open.

If you need more precise control over files, I suggest using `AssemblyDefinition.ReadAssembly` instead of `AssemblyLoader.LoadAssembly`. With that you can load the file into memory, patch it and write to the...

That's a problem with Cecil, not Cecil.Inject. If you just pass the filename to `AssemblyDefinition.ReadAssembly` (or to `AssemblyLoader.LoadAssembly`), it will open a file stream to read the assembly from that....

@drstark You can indeed get NetMQ working on .NET 3.5 equivalent version of Mono, but that requires some trickery. I haven't looked too deeply into the issue (yet, at least),...

I agree that while caching is not really the cause, the extra methods that are jitted with it disabled likely alters memory layout enough for the basic memory slot searching...

The issue is not the implementation but likely the fact that when cache is not generated, a lot more code is being executed which causes different methods to be jitted,...

> I'm actually interested in the part before the allocator, as what the allocator does is kind of common practice in patching code caves etc. I wanted to understand why...

The OP of #471 hasn't provided full logs from their side and I wasn't able to replicate it on either the pre-release nor latest BE. Meanwhile I was able to...