I have a list like this:
List list = new List
How to handle adding new position to this list?
When
You can't do this with List. However, you can do it with ObservableCollection. See ObservableCollection Class.
List
ObservableCollection