static void Main(string[] args) { // tao danh sach dong vat va cho chung // tu gioi thieu ve ban than Dong_Vat[] Arr = new Dong_Vat[5]; KhoiTao(ref Arr); foreach (Dong_Vat d in Arr) { Console.WriteLine("--------"); d.introName(); d.sound(); d.introFood(); } }
public Dong_Vat(Dong_Vat r) { ten = r.ten; }