3
GetType () retornará o tipo mais derivado quando chamado da classe base?
GetType () retornará o tipo mais derivado quando chamado da classe base? Exemplo: 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 } Ou devo apenas fazer um método abstrato que …