3
GetType () có trả về kiểu dẫn xuất nhiều nhất khi được gọi từ lớp cơ sở không?
GetType () có trả về kiểu dẫn xuất nhiều nhất khi được gọi từ lớp cơ sở không? Thí dụ: public abstract class A { private Type GetInfo() { return System.Attribute.GetCustomAttributes(this.GetType()); } } public class B : A { //Fields here have some custom attributes added to them } Hay …