In Java there is an ArrayList , and there myList.get(0) and myList.get(myList.size()-1) .
But in C # I can’t find it at all ( item32[] doesn’t work). What are the options?
I need to remember the coordinates of the first and possibly the last touch of the mouse.
Do I need a dynamic array to solve this problem? How can you solve it differently?