类的属性是由派生类继承的,还是必须专门应用于派生类?
例如对于 system.timer.timer:
'Declaration
<HostProtectionAttribute(SecurityAction.LinkDemand, Synchronization := True, _
ExternalThreading := True)> _
Public Class Timer _
Inherits Component _
Implements ISupportInitialize
如果我有课
Class MyScheduler
Inherits Timer
'...
End Class
我是否需要将计时器 calss 的属性显式应用于 MyScheduler 类,还是作为继承的一部分发生?