I have a data structure similar to a List, but I could not use any built-in containers (List<> etc.). I\'d like to keep a \"pointer to pointer\" aka \"tail\", which point to
How about using a LinkedList instead of the List<>...?