Answers for "unity get length of 2d 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
0

get length of an array unity

arr.Count
Posted by: Guest on July-06-2020

C# Answers by Framework

Browse Popular Code Answers by Language