Array.IsFixedSize is use in determining whether array is of fixed size or not.
Example of Array.IsFixedSize Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpDemoApps
{
class Program
{
static void Main(string[] args)
{
// Creates and initializes a new integer array.
int[] myIntArray = new int[5] { 1, 2, 3, 4, 5 };
if (myIntArray.IsFixedSize)
Console.WriteLine("Array is of Fixed Size");
else
Console.WriteLine("Array is NOT of Fixed Size");
Console.ReadLine();
}
}
}