I would like to have my strategy inherit from a base class I created. The inheritance tree is as such:
public abstract class MyBaseClass : Strategy, Interfaces
{
}
public class MyStrategy : MyBaseClass
{
}
If this is possible, where can I instantiate the abstract class (since there is no formal constructor available)? Normally, that would be done as such:
public MyStrategy() : base()
{
}
If this is illegal in NT8, may you please explain why and provide a potential alternative?
Thank you,
John

Comment