gpt4 book ai didi

c# - 新的 C# 6.0 字符串插值语句无法编译

转载 作者:太空狗 更新时间:2023-10-29 22:30:46 24 4
gpt4 key购买 nike

<分区>

我正在尝试实现 this video 中的一些功能但是我对新的 String Interpolation 语法不太满意(我的其他一切都在工作,至少在这段代码中是这样)。

我使用的是 Visual Studio 2015 CTP6,我已将其配置为使用 .NET 4.6,并已进入构建选项以确保我指定的是 C# 6.0。我也有followed the instructions here .

这是我的代码:

using System;
using static System.Math;

namespace NewCsharp6Features
{
public class C6Point
{
public int X { get; }
public int Y { get; }
public double Distance => Sqrt(X * X + Y * Y);

public C6Point(int x, int y) { X = x; Y = y; }

public override string ToString()
{
return "(\{X}, \{Y})";
}
}
}

我遇到了两个这样的编译错误:

CS1009 | Unrecognized escape sequence

知道我做错了什么吗?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com