Наследование: ConstructorInfoAbstractBase
Пример #1
0
        public void Invoke_SubClass()
        {
            ConstructorInfo[]      constructors = GetConstructors(typeof(ConstructorInfoDerived));
            ConstructorInfoDerived obj          = null;

            obj = (ConstructorInfoDerived)constructors[0].Invoke(new object[] { });
            Assert.NotNull(obj);
        }