I\'m getting the following error :
\"Property does not exist in the current context\".
I checked on StackOverflow the usual causes
In C#, you can not initialize property in class body. You should initialize them in constructor:
namespace ConsoleApplication5 { public class Audi : Voiture { Audi() { this.Marque = "Audi"; } public void Deraper() { Console.WriteLine("Vroooouum !!"); } } }