Flee is really great, but are anyone aware of a C# port of it?
I saw a mention of this in one of the answers to this question: Compiling C# on the fly
I would prefer c# to be able to handle possible issues that might arise myself.
Flee is really great, but are anyone aware of a C# port of it?
I saw a mention of this in one of the answers to this question: Compiling C# on the fly
I would prefer c# to be able to handle possible issues that might arise myself.
Given that Flee is written in Visual Basic .NET, you can use it directly from C#. Translating between the two languages is typically fairly easy, and can often be done using online automatic converters.
However, if you really want to avoid it, you may be able to use NCalc instead, which also provides nice expression parsing for .NET, and is written in C#.
Looks like there was a recent conversion, here: http://fleesharp.codeplex.com/.
I've switched to use it for a project I'm working on and haven't noticed any errors.
I am the author of CSharpEval (http://csharpeval.codeplex.com). Performance should be similar to Jace.NET, as the end result is a compiled function. Also, CSharpEval is being actively developed (as I am using it in existing projects)