Base keyword
class Restaurant
{
protected int kosten=0;
public virtual void PoetsAlles()
{
kosten+=1000;
}
}
class Frituur:Restaurant
{
public override void PoetsAlles()
{
kosten+= (1000 + 500);
}
}Last updated
Was this helpful?