16
Türetilmiş sınıfımdaki bir yöntemi neden çağırmak temel sınıf yöntemini çağırıyor?
Bu kodu düşünün: class Program { static void Main(string[] args) { Person person = new Teacher(); person.ShowInfo(); Console.ReadLine(); } } public class Person { public void ShowInfo() { Console.WriteLine("I am Person"); } } public class Teacher : Person { public new void ShowInfo() { Console.WriteLine("I am Teacher"); } } Bu …
146
c#
class
derived-class