I am making a custom class that inherits from a button, what is the terminology for 'inherits' (vb) in C#?
Thanks
Printable View
I am making a custom class that inherits from a button, what is the terminology for 'inherits' (vb) in C#?
Thanks
C# Code:
public class ButtonEx : Button { }
Thanks