Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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
Source by www.codecademy.com #
 
PREVIOUS NEXT
Tagged: #error
ADD COMMENT
Topic
Name
1+6 =