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 tôi chỉ nên tạo một phương thức trừu tượng mà các lớp dẫn xuất sẽ phải triển khai như sau?
public abstract class A
{
protected abstract Type GetSubType();
private Type GetInfo()
{
return System.Attribute.GetCustomAttributes(GetSubType());
}
}
public class B : A
{
//Fields here have some custom attributes added to them
protected Type GetSubType()
{
return GetType();
}
}