Thanks, yes, I have created an interface and implemented this in my subclasses with an Extension class as follows:
Code:
public interface IDesignBaseControl { void Initialize(); string Name { get; set; } } public static class DesignBaseControlExtension { public static void InitializeBase(this IDesignBaseControl
Leave a comment: