Estou usando Visual Studio 2013 Estou recebendo o seguinte erro: The name 'c' does not exist in current context. Porem a resposta do exercício diz que vai compilar, o que errei?
''' namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Primaria a = new Primaria(); var b = new Primaria(); c = new Primaria(); // The name 'c' does not exist in current context. } } } '''