(not completely sure its called list of arrays)
Basically i have one of these:
List<string[]> blogPostList = new();
each post in the list has three elements like this:
string[] blogPost = new string[3];
If you look at the picture, I am trying to let the user "overwrite" the title, by first removing it with removeAt (and then just add new with blogPostList.Add(blogPost[index][0]);) but I cant find anywhere how to write the code for the removeAt? since i want to overwrite just index 0, and not all 3 index of the blogPost