3
क्या बेस क्लास से कॉल करने पर गेटटाइप () सबसे व्युत्पन्न प्रकार लौटाएगा?
क्या बेस क्लास से कॉल करने पर गेटटाइप () सबसे व्युत्पन्न प्रकार लौटाएगा? उदाहरण: 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 } या मुझे केवल एक अमूर्त विधि बनानी …