I know that I'm able to use LINQ to initialize a 1D array by doing this:
Code:
Dim foo() As Boolean = Enumerable.Range(0, 9).ToList().ConvertAll(Function(i) True).ToArray()
But is there a way that I could do the same thing for a 2D array too?