holdenmai

Results 10 comments of holdenmai

Another possibility, depending on the outcome desired for this, is to return an ExpandoObject. This would allow consuming code to be able to reference it as dynamic, or be passed...

I do have a fix for this ready local as it was blocking some of my testing of edge cases on collection initialization #250 , I would just like to...

I agree from a security perspective with what you said. In order for the underlying compiled Delegate to update the invoked objects, the parameter has to be declared as a...

My idea seems pretty limited in scope, but based on this request it would be possible to add in a ParameterInterceptor style functionality. The end user would receive the ParameterExpression,...

This is an interesting scenario where the compiler gives results that seem conflicting to me. `var result = 10ul + 5;` works exactly as stated in original comment. However, ```...

In a way, this is a simple ask as the implicit conversion is taken care of by Expression.Convert as shown below ```c# private class Convertible { private readonly T m_sourceValue;...

Decided to dig into how the .net standard performs the operator check to see if there was something publicly available. Unfortunately not, however the logic they use to check if...

As an example where this can already be a valid use case from one of the existing unit tests (Assignment_Operator_Equal) would be to have an additional test like (to show...

Does your external code have a single interpreter instance being called by multiple threads? On Thu, Jun 8, 2023, 10:49 AM Igor0894 ***@***.***> wrote: > Do you have an example...