Zainstalowałem Visual Studio 15 Preview 3 i próbowałem użyć nowej funkcji krotki
static void Main(string[] args)
{
var x = DoSomething();
Console.WriteLine(x.x);
}
static (int x, int y) DoSomething()
{
return (1, 2);
}
Podczas kompilacji pojawia się błąd:
Predefiniowany typ „System.ValueTuple” 2 nie jest zdefiniowany ani importowany
Zgodnie z postem na blogu ta funkcja powinna być domyślnie włączona.
Co zrobiłem źle?