I have a set of arrays in an array that contain characters e.g.
{{'#','.','#'}{'#','$','#'}{'#','@','#',}{'#','#','#',}}
And what I want to be able to create a grid based on the number of those dynamically as the amount can change (they will always have the same amount of characters in every internal array)
so i want the internal arrays to be rows and the characters inside to each be on their own column so it would look like
"#.#"
"#$#"
"#@#"
"###"
so what would be the best way to setup this grid and then what i would like to do is fill all of those cells with pictureboxs as depending on what symbol it is it will be a specific picture.
so just wondering what the best way to do this would be any help/advice is much appreciated