12-03-2020, 04:49 PM
Hello -
Does QM support String Interpolation (https://docs.microsoft.com/en-us/dotnet/...terpolated) when using C#?
I am trying the following code.
And I get the following error.
<macro "Scripting_Link /45 19 2 ''Macro2''">Macro2(45,19): error CS1056: Unexpected character '$'. <help #IDP_ERR>?
Does QM support String Interpolation (https://docs.microsoft.com/en-us/dotnet/...terpolated) when using C#?
I am trying the following code.
#ret
//C# code
using System;
using System.Windows.Forms;
class SampleFunction
{
static void Main(string[] args)
{
MessageBox.Show($"Hello:{args[0]}");
}
}
And I get the following error.
<macro "Scripting_Link /45 19 2 ''Macro2''">Macro2(45,19): error CS1056: Unexpected character '$'. <help #IDP_ERR>?