I don\'t want to make a new instance of Form1 in the class, and i dont want to use static.
static
I have these two variables which are private in the top of the cl
The canonical solution is
private List mPoint_X = new List(); private List mPoint_Y = new List(); public List Point_X { get { return mPoint_X; } } public List Point_Y { get { return mPoint_Y; } }