So, I'm working with c# and I'm trying to create a Bar graph in the console using strings. So I created a 2D list and gave each slot a default "empty" image.
List<List<string>> chart = new List<List<string>>() {"| |"};
but when i wrote it out, i got these two error messages in Visual studios
Error 1 Argument 1: cannot convert from 'string' to 'System.Collections.Generic.List<string>'
Error 2 The best overloaded Add method 'System.Collections.Generic.List<System.Collections.Generic.List<string>>.Add(System.Collections.Generic.List<string>)' for the collection initializer has some invalid arguments
List<string>notList<List<String>>