Is it possible to inherit from two classes in VB.net?
We are developing Custom User Controls that inherits from say System.Web.UI.WebControls.Label. We are planning on implementing a bunch of these controls but they will share mostly the same additional properties. We are hopeful about centralising these properties.
I have looked into interfaces but it seems they only 'contract' properties you need to implement.
Thoughts?