But now I'm confused because the Validator base class can't have the same methods?
Are you saying the Validator class should just be an empty class?Code:public abstract class Validator { public virtual void ValidateString(string m_string) { } public virtual void ValidateInt(int m_int) { } }
Edit:
If this is correct then I need to modify the base-class:
Code:public class Validator { public virtual void Validate(object o) { } }




Reply With Quote
