3
GetType ()은 기본 클래스에서 호출 될 때 가장 많이 파생 된 유형을 반환합니까?
GetType ()은 기본 클래스에서 호출 될 때 가장 많이 파생 된 유형을 반환합니까? 예: 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 } 아니면 파생 클래스가 다음과 같이 구현해야하는 추상 …