I'm using latest Mono 3.12.1. All of the C#6 features are working for me, apart from string interpolation. I'm using MCS compiler.
Here's my code:
const string someString = "Some String";
var str = $"string: {someString}";
I'm getting the following error:
error CS1056: Unexpected character `$'
Is string interpolation supported by Mono?