I have a menu that have choices that go down vertically like columns, with multiple columns of choices next to each other.
How can I write out my array when I declare it?
What I have so far
private string[,] talk_menu_comments = { { “option1” , “option2”}, { “option1b”, “option2b”} };
Each bracket should be a column but I don’t think my grouping is right, any ideas? Thanks!