Consider the following array:
int[,] numbers = new int[3, 2] { { 2, 1 }, { 3, 4 }, { 6, 5 } };
I would like to use LINQ to construct an IEnumerable with numbers 2, 1, 3, 4, 6, 5.
What would be the best way to do so?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…