📅  最后修改于: 2022-03-11 14:48:46.401000             🧑  作者: Mango
// int index = any index which you need to check if exists in array
if(index < array.Length)
{
Console.WriteLine(array[index]);
}