📌  相关文章
📜  c# 检查二维数组位置是否存在 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:15.599000             🧑  作者: Mango

代码示例1
// make sure we're not referencing cells out of bounds of the array
if (tileX < arr.GetLength(0) && tileY < arr.GetLength(1))
{
    // logic
}