Answers for "check if 2d array contains value c#"

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

Code answers related to "check if 2d array contains value c#"

C# Answers by Framework

Browse Popular Code Answers by Language