C
C#14mo ago
Ronnie

String vectors in list? not sure what its called

What is this type of list called and how do i target the values? Im taking the course in swedish and having trouble finding information so I need some help :p
1 Reply
phaseshift
phaseshift14mo ago
its a list of string arrays vectorlist[0] would be a string[], so vectorlist[0][0] would be the first string in the first string[] of the List I'd suggest that string[] isnt a particularly friendly type for what you want to contain within your List. ie a tuple might read better List<(string Type, string Author, string Type)>