Maksim Volkau
Maksim Volkau
What do you mean here by `ref locals`. Could provide an example/pseudocode? Regarding memory usage, are you using LightExpressions?
> Sure, here is the C# I'd like to emulate Thanks.. So you want to be able to turn this code into expression and compile it?
Yes it should be possible, just get the address instead. But do you need to put all that code into expression or for instance only the body of the loop...
@weichx Just updated my prev answer with code. Ok. I need to experiment with by-ref locals and ref assignments then. I'll keep you posted.
@weichx Back to looking into it.
What is the FEC version?
@TFTomSun The late question on the issue, what is the type of `x` in `x => x.Value.collectionA.Where(i => i.Number1 % 2 == 0 || x.Value.model.Number2 == 0).ToReadOnlyRecord()` ? If it...
@weichx Wow, how did you do that, can you share? At the moment, the most promising part for me is to reuse byte codes `byte[]` array here: ```cs internal void...
@weichx Thanks for sharing.. will see what can I steal from it :)
@weichx May be you tried it?... I was thinking, what is the fastest route from the `byte[]` array to the method. I am looking at something like https://source.dot.net/#System.Private.CoreLib/src/System/Reflection/Emit/DynamicILGenerator.cs,901