Answers for "unity c# get size of multidimensional array"

C#
1

unity how to find the length of on axis of an array

myArray.GetLength(0)  -> Gets first dimension size
 
 myArray.GetLength(1)  -> Gets second dimension size
Posted by: Guest on December-28-2020

C# Answers by Framework

Browse Popular Code Answers by Language