|
分類:[C#]
2017/07/15(Sat) 18:35:48 編集(投稿者) 2017/07/15(Sat) 18:35:35 編集(投稿者)
List<int[]> l_i = new List<int[]>();
l_i.Add(new int[] { 0, 0 } ); l_i.Add(new int[] { 0, 1 } ); l_i.Add(new int[] { 0, 2 } ); l_i.Add(new int[] { 0, 3 } );
l_i.Remove(new int[] { 0, 0 } );
とやっても削除できません。
ちなみに if (l_i[0] == new int[] { 0, 0 }) { MessageBox.Show("真"); } else { MessageBox.Show("偽"); }
と確認してみたら「偽」になってしまいました。 ご見識がおありの方がいらしゃいましたら よろしくお願いいたします。
|