我已经安装了Visual Studio 15 Preview 3,并尝试使用新的元组功能

static void Main(string[] args)
{
    var x = DoSomething();
    Console.WriteLine(x.x);
}

static (int x, int y) DoSomething()
{
    return (1, 2);
}

当我编译时,我得到错误:

预定义类型“系统”。ValueTuple´2´未定义或导入

根据这篇博文,这个功能在默认情况下应该是“开启”的。

我做错了什么?


当前回答

对于Visual Studio Code,使用内置的终端并运行:

dotnet add package "System.ValueTuple"

之后别忘了运行dotnet恢复。

其他回答

确保你为VS安装了。net 4.6.2 Developer Pack,然后拉入System。NuGet中的ValueTuple包。

它是. net Framework 4.7的一部分。

只要你的目标不是上面的框架或更高的框架(或。net Core 2.0 / . net Standard 2.0),你就需要引用ValueTuple。通过添加系统来完成此操作。ValueTuple NuGet包

对于。net 4.6.2或更低版本,请使用。net Core 1。. x和。net标准1。安装NuGet包System。ValueTuple:

Install-Package "System.ValueTuple"

或者在VS 2017中使用包引用:

<PackageReference Include="System.ValueTuple" Version="4.4.0" />

. net Framework 4.7、. net Core 2.0和. net Standard 2.0都包含这些类型。

ValueTuple类型被构建到新的框架中:

.NET Framework 4.7 .NET Core 2.0 Mono 5.0 .Net标准2.0

在您的目标是那些较新的框架版本之前,您需要引用ValueTuple包。

详情见http://blog.monstuff.com/archives/2017/03/valuetuple-availability.html

对于Visual Studio Code,使用内置的终端并运行:

dotnet add package "System.ValueTuple"

之后别忘了运行dotnet恢复。