GetType (), temel sınıftan çağrıldığında en türetilmiş türü döndürür mü?
Misal:
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
}
Veya türetilmiş sınıfların aşağıdaki gibi uygulaması gereken soyut bir yöntem mi yapmalıyım?
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();
}
}