murarisumit
1
Q:

c# error CS0535

/*			error CS0535: Sedan does not implement 
			interface member 'IAutomobile.LicensePlate'				*/

class Sedan : IAutomobile
{
}							//Causes Error

class Sedan : IAutomobile
{
  public string LicensePlate
  { get; }

  // and so on...
}							//Define the members of the interface
1

New to Communities?

Join the community