I'm just wondering if a C # list is like a C ++ list.
Deleting an item in the middle of a large list in C ++ is quick because I know that the elements just point to the following.
So, when deleting an item in the middle of a large C # list, is it the same as in C ++? Or a C # list is more like a C ++ vector with indexes, because you can get the index number of elements in a C # list.
source share