Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
What does Array.IsFixedSize property of array class do in C# ?
The IsFixedSize property of ArrayList class is used to get a value indicating whether the ArrayList has a fixed size.
The following is an example stating the usage of isFixedSize property −
Example
using System;
using System.Collections;
class Demo {
public static void Main() {
ArrayList arrList = new ArrayList();
Console.WriteLine("Adding some numbers:");
arrList.Add(45);
arrList.Add(78);
Console.WriteLine(arrList.Count);
Console.WriteLine("myArrayList.IsFixedSize = " + arrList.IsFixedSize);
}
}
Output
Adding some numbers: 2 myArrayList.IsFixedSize = False
Above we have added an array list −
ArrayList arrList = new ArrayList();
Then we have checked whether it has a fixed size or not −
Console.WriteLine("myArrayList.IsFixedSize = " + arrList.IsFixedSize); Advertisements
