ho risolto così:
codice:
namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            int[,] arrayMulti = new int[4, 2] {
                {1, 5}, {5, 4}, {0, 2}, {8, 7}
            };
            int rowLength = arrayMulti.GetLength(0);
            int colLength = arrayMulti.GetLength(1);

            for (int i = 0; i < rowLength; i++)
            {
                for (int j = 0; j < colLength; j++)
                {
                    Console.WriteLine(string.Format("record[{0},{1}] ", i, j, arrayMulti[i, j]));
                }
            }
            Console.ReadKey();
        }
    }
}