Is the below design OK?
Table will be initialized inside PopulateTable() by it's derived classes;Code:public abstract class MyAbstract { public Dictionary<int, ushort> Table { get; protected set; } protected MyAbstract() { PopulateTable(); } protected abstract void PopulateTable(); }




Reply With Quote
