Advertisement
ziko1218

Untitled

Jan 9th, 2021
595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. int [,] numberGrid = {
  2.     {1,2},
  3.     {3,4},
  4.     {5,6};
  5.    }
  6.  
  7.    console.WriteLine(numberGrid[2,0]);
  8.    
  9. Console.ReadLine();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement