-
-
Notifications
You must be signed in to change notification settings - Fork 405
Open
Labels
Description
Hello,
I didn't find documentation on string interpolation being supported or not. I gave it a try and it doesn't look like it is. I also didn't find any references in the Parsers to that feature. Do you have any plans on supporting it?
Tested on a .NET 10 console app using DynamicExpresso 2.19.3.
Here's the Program.cs sample code:
using DynamicExpresso;
var consoleInput = args[1];
var interpreter = new Interpreter();
interpreter.SetVariable("input", consoleInput);
Console.WriteLine(interpreter.Eval("$\"Input is {input}\""));
Reactions are currently unavailable