Answers for "c# check if 2d array position exists"

C#
1

c# check if 2d array position exists

// make sure we're not referencing cells out of bounds of the array
if (tileX < arr.GetLength(0) && tileY < arr.GetLength(1))
{
    // logic
}
Posted by: Guest on June-10-2021

C# Answers by Framework

Browse Popular Code Answers by Language