

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is an array class in C#?
The Array class is the base class for all the arrays in C#. It is defined in the System namespace. The Array class provides various properties and methods to work with arrays.
The following are the properties of array class −
The below table describes some of the most commonly used properties of the Array class.
Sr.No | Property & Description |
---|---|
1 | IsFixedSize Gets a value indicating whether the Array has a fixed size. |
2 | IsReadOnly Gets a value indicating whether the Array is read-only. |
3 | Length Gets a 32-bit integer that represents the total number of elements in all the dimensions of the Array. |
4 | LongLength Gets a 64-bit integer that represents the total number of elements in all the dimensions of the Array. |
5 | Rank Gets the rank (number of dimensions) of the Array. |
- Related Questions & Answers
- What is an array in C#?
- What is an auto storage class in C language?
- What is an extern storage class in C language?
- What is an Inner class in Java?
- How to define an array class in C#?
- What is Proxy Class in C++?
- What is the difference between an interface and an abstract class in C#?
- What is the size of an object of an empty class in C++?
- What is the Capacity property of an ArrayList class in C#?
- What is an array of structures in C language?
- Array class in C++
- What is an array in Java?
- What is the ArrayList class in C#?
- What is the SortedList class in C#?
- What is the Stack class in C#?
Advertisements