Override (Qayta yozish)
Sobirjonov O'tkirbek
Overriding o’zi nima?
Overriding ishlatilmagandagi holat
public class Shape
{
}
public class Circle : Shape
{
public void Draw()
{
Console.WriteLine("Aylana chizildi");
}
}
public class Triangle : Shape
{
public void Draw()
{
Console.WriteLine("Uchburchak chizildi");
}
}
public class Rectangle : Shape
{
public void Draw()
{
Console.WriteLine("To'rtburchak chizildi");
}
} Overriding ishlatilgandagi holat
Last updated
Was this helpful?