System.Object[] ArrayTest = new System.Object[2]
{
new System.Int32[]{ 10 },
new System.Byte[]{ 1,4,6 }
};
Как получить доступ к System.Int32
и System.Byte
из массива System.Object [?]
Невозможно применить индексирование с помощью [] к выражению типа 'object'
System.Windows.MessageBox.Show( ((System.Int32)ArrayTest[0][0]).ToString() ); //Something Like That;