var MyArrayLower = MyArray.Select(s => s.ToLowerInvariant()).ToArray();
(or
MyArray = MyArray.Select(s => s.ToLowerInvariant()).ToArray();
if you want to replace the existing array with a new instance of string[].)
var MyArrayLower = MyArray.Select(s => s.ToLowerInvariant()).ToArray();
(or
MyArray = MyArray.Select(s => s.ToLowerInvariant()).ToArray();
if you want to replace the existing array with a new instance of string[].)