Answers for "c# how to create a 2d array which you dont know the size"

C#
16

c# length 2d array

int rowsOrHeight = ary.GetLength(0);
int colsOrWidth = ary.GetLength(1);
Posted by: Guest on May-18-2020

Code answers related to "c# how to create a 2d array which you dont know the size"

C# Answers by Framework

Browse Popular Code Answers by Language