我已经安装了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);
}
编译时出现错误:
未定义或导入预定义类型“ System.ValueTuple´2”
根据博客文章,此功能默认情况下应处于“启用”状态。
我做错什么了?