Results 50 comments of Paul Ward

Nothing heard for a month, last commit was 5 years ago it appears ... I guess this package is basically dead.

Oh one other thing ... this is how I setup the "assignContext" which is a ZZZ EvalContext that i'm using for this call ... ``` // some of the stack...

New project > net core console app, then drop this in ... ``` using System; using Z.Expressions; namespace ExpressionThing { class Program { static void Main(string[] args) { var script...

@JonathanMagnan random question ... Do you have a discord server? I use discord a lot and we have a discord server for the company, it's real easy to share code...

Oh ... that's new ... I didn't have to do that before under .Net 4 ... is this a .Net Core thing?

Given my original example source the last line of code had ... ``` assignContext.RegisterAssembly(stackAssemblies); ``` .... Is it possible to have an override of this that auto registers all namespaces...

My understanding is that if I do this ... ``` var ctx = new EvalContext { IncludeMemberFromAllParameters = false }; ctx.RegisterAssembly(stackAssemblies); ``` I'm constructing the context then telling it what...

Oh i see what you're saying ... yeh my bad ... That means the sample I gave you is broken in a different way to the code in my main...

Awesome :) you guys are on overtime bashing this out on a bank holiday weekend I love the dedication :)

For the above ... It would be really good to have a method like ... `Type[] types = context.GetKnownTypes();` ... which lists all registered types that the parser can consume...