I have a class with a public property for array of points
public System.Drawing.Point[] Points { get; set; }
I want user to be able to change this property using PropertyGrid.
Problem is that PropertyGrid allows me (user) to edit existing list of points.
But if I want to add or delete points then I need to click "..." button on the right side of the row and open Point Collection Editor.
I just don't understand why Point Collection Editor dialog shows me "Object does not match target type". What am I doing wrong?