意外字符'$'

我是编程新手,我刚刚安装了Visual Studio 2017.我创建了这个代码(从我正在学习的书中),但是这不能编译。 我有字符串插值问题,我得到错误:

意外字符'$',

但我使用C#6.0,所以这不应该是一个问题?

static void Main(string[] args)   
{   
     string comparison;   
     WriteLine("Enter the number:");   
     double var1 = ToDouble(ReadLine());   
     WriteLine("Enter another number :");   
     double var2 = ToDouble(ReadLine());   
     if (var1 < var2)   
         comparison = "less than";   
     else   
     {   
         if (var1 == var2)   
             comparison = "equal to";   
         else   
             comparison = "greater than";    
      }   

     WriteLine($ "The first number is {comparison} the second number");
     ReadKey();   
}

这是一个非常小的问题:)删除$后的空间:

WriteLine($"The first number is {comparison} the second number");

在文档中查看适当的结构:

$"<text> {<interpolated-expression> [,<field-width>] [:<format-string>] } <text> ..."

我已经请求了一个编辑,解释了在$之后必须没有空格,现在它声明:

链接地址: http://www.djcxy.com/p/75175.html

上一篇: Unexpected character '$'

下一篇: bodied function members efficiency and performance in C# 6.0