I have a 2d array of nullable ints (try guessing what exactly it's for).
From that, I want to get both the first and last non-null elements from the first and last rows each.
How do I do this?
class Foo
{
int?[,] array = new int?[3,9]
{
{ null , 13 , 21 , null , null , 52 , 69 , 76 , null },
{ 9 , 15 , null , 36 , 45 , null , null , 77 , null },
{ null , null , null , 39 , 48 , 53 , null , 79 , 87 },
};
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…