The class Thread is a sealed class meaning it cannot be inherited from and I need an instance of a reusable Thread that should inherit from the Thread class. Does anyone have an idea how i can reuse tread ?
The class Thread is a sealed class meaning it cannot be inherited from and
Share
As you yourself noted,
Threadis a sealed class. Obviously this means you cannot inherit from it. However, you can create your ownBaseThreadclass that you can inherit and override to provide custom functionality using Composition.You get the idea.