I've looked and found no definitive answer. I'm looking for the easiest way to set all array elements in a char array to '*'.
public static int GridWidth = 7;
public static int GridHeight = 5;
char[,] Cave = new char[GridWidth, GridHeight]
So i have a multi dimensional array and want to set all of the elements to '*'. Is this a case of iterating through the array to set each of the values, or is there alternative methods?