Samuel Terrazas
12 discussion posts
I was writing some c# for a macro and wanted to use some interpolated strings because it can make some string writing easier. But was surprised when I got an error saying that $ was unrecognized.
Are interpolated strings not supported?
Interpolated string: $"{categoryindex},{casereasonindex}"
Normal string: categoryindex.ToString() + "," + casereasonindex.ToString()
Samuel Terrazas
12 discussion posts
Thanks for the information. I'll eagerly await a compiler update.