cs11dotnet7/vscode/Chapter03/SelectionStatements/Animals.cs
2022-09-17 14:09:41 +01:00

17 lines
303 B
C#

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;
}