I have this line of code:
var defaultResult = $"Enum_{@this.GetType().Name}_{@this}";
but I get this error:
expected ;
How do I fix this? String.Format?
I have this line of code:
var defaultResult = $"Enum_{@this.GetType().Name}_{@this}";
but I get this error:
expected ;
How do I fix this? String.Format?
The $
is a feature available in C# 6.0. Make sure you're set to the correct version.