I have read a text file in C#. Now I want to store the characters in a data structure so that i can delete some of the read characters inside it. My concern is,
- Which one (Data Structure: Array, List, List<>, Linked List etc) is fast?
- How many characters each of the types can store?
- Is it a good practice to load so many characters in memory like this?
- Any other idea is appreciated please.