10
Il tipo predefinito "System.ValueTuple´2" non è definito o importato
Ho installato Visual Studio 15 Preview 3 e ho provato a utilizzare la nuova funzionalità tupla static void Main(string[] args) { var x = DoSomething(); Console.WriteLine(x.x); } static (int x, int y) DoSomething() { return (1, 2); } Quando compilo ottengo l'errore: Il tipo predefinito "System.ValueTuple´2" non è definito o …