ElektroKill

Results 77 comments of ElektroKill

Hello, thank you for reporting an issue. However, could you provide reproduction instructions so I could reproduce the issue in my environment in order to look into it more? Like...

In the unidict config, I only see entries to add flowers to the allFlowers key?

I am not able to reproduce this behavior, when removing the two last flowerDark entries from the config, reloading the game, the brown flowers still work fine in the SAG...

Hi, I think dnSpy already implements a more universal resolver. Maybe the one from dnSpy could be adapted for dnlib only https://github.com/dnSpy/dnSpy/blob/master/dnSpy/dnSpy/Documents/AssemblyResolver.cs

Related Avalonia issue: https://github.com/AvaloniaUI/Avalonia/issues/9989

Probably related to: https://github.com/0xd4d/dnlib/issues/533

dnSpy's old ILSpy 2 engine decompiles this correctly. According to the specification, `cgt.un` can be used to check for inequality of object references. "cgt.un is allowed and verifiable on ObjectRefs...

This is not a bug. `ContainsGenericParameters` returns true if the method contains *unspecified* generic parameters. If these generic parameters are unspecified, it means that no instantiation signature is provided. Therefore...

> 1. Why extra parameter `originalDeclaringType` is requirement when DynamicMethodBodyReady already know how to generate instructions exactly (except ldtoken)? `originalDeclaringType` doesn't support any information which DynamicMethodBodyReady doesn't know. The information...

> > The information regarding the declaring type is used to determine whether we should interpret the type as an unbound generic instantiation signature or retain original handling. > >...