// CS0030: Cannot convert type `T[,]' to `System.Collections.Generic.IEnumerable' // Line: 10 using System.Collections.Generic; class C { IEnumerable Foo (T [,] a) { return (IEnumerable) a; } }