Getting generic forms to work in C#
Turns out that .Net can handle generic forms fine, but the form designer in VS2008 can't. So, a code example:
public partial class MyGenericForm<T> : Form where T : class { /* form code */ public List<T> TypedList { get; set; } } This compiles and runs but crashes the form's designer. It will also crash if you have any resources loaded for the form (images for instance).