cs11dotnet7/vscode/Chapter03/SelectionStatements/Animals.cs

17 lines
303 B
C#
Raw Normal View History

2022-09-17 15:09:41 +02:00
class Animal // This is the base type for all animals.
{
public string? Name;
public DateTime Born;
public byte Legs;
}
class Cat : Animal // This is a subtype of animal.
{
public bool IsDomestic;
}
class Spider : Animal // This is another subtype of animal.
{
public bool IsPoisonous;
}