Akankah GetType () mengembalikan tipe yang paling banyak diturunkan saat dipanggil dari kelas dasar?
Contoh:
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
}
Atau haruskah saya membuat metode abstrak yang harus diterapkan oleh kelas turunan seperti berikut?
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();
}
}