I currently have an extension method on System.Windows.Forms.Control like this:
public static void ExampleMethod(this Control ctrl){ /* ... */ }
However, this method doesn't appear on classes derived from Control, such as PictureBox. Can I make an extension method that appears not only in Control, but for classes derived from Control, without having to do an explicit cast?