Introduction
An array is a collection of variables that are stored in contiguous memory locations. It is used to store multiple values of the same type under a single name, allowing you to easily access and manipulate the values.
Key Points
- Fixed Size: The size of an array is defined when it is created, and it cannot change during runtime.
- Homogeneous Elements: Arrays can only store elements of the same data type (e.g., all integers, all strings).
- Zero-Based Indexing: The index of the first element in an array is 0. Each subsequent element is accessed using an index number.
- Efficient Memory Usage: Arrays are stored in contiguous memory locations, which makes them efficient for accessing elements.
Step 1. Declaring Arrays.
You can declare an array in C# in various ways. Here are a few examples.
Step 2. Accessing Array Elements.
Array elements are accessed using an index, which starts at 0.
Step 3. Modifying Array Elements.
You can assign a new value to an element in an array.
Step 4. Iterating Over Arrays.
You can use a for loop or for each loop to iterate through an array.
Step 5. Multidimensional Arrays.
C# supports multidimensional arrays (e.g., 2D arrays).
Step 6. Jagged Arrays.
A jagged array is an array of arrays (arrays that can have different lengths).
Step 7. Array Methods.
You can use built-in methods to manipulate arrays.
- Array.Sort(): Sorts the array.
- Array.Reverse(): Reverses the array.
- Array.Copy(): Copies elements from one array to another.
- Array.Find(): Finds an element based on a condition.
Step 8. Array Length and Bounds.
- Length: Represents the number of elements in the array.
- GetLength(): Provides the length of a specific dimension in a multidimensional array.
Step 9. Array Initialization with Specific Values.
You can initialize an array with specific values or use Enumerable. Repeat to create arrays filled with the same value.
Step 10. Using LINQ with Arrays.
LINQ (Language Integrated Query) provides powerful ways to manipulate and query arrays.
Step 11. An array of Objects.
You can also create arrays of objects in C#.
Step 12. Handling Arrays with Methods.
You can pass arrays to methods and manipulate them. Arrays are passed by reference, so changes made inside the method will affect the original array.
Step 13. Copying Arrays.
In C#, you can copy arrays in various ways.
- Array.Copy(): Copies elements from one array to another.
- Array.Clone(): Creates a shallow copy of the array.
- Array.ConstrainedCopy(): Copies elements with additional safety checks.
Step 14. Array Resizing.
C# does not directly allow resizing an array, but you can use Array.Resize() to create a new array with a different size.
Step 15. Array vs List.
While arrays have a fixed size, List<T> is more flexible because it can dynamically grow or shrink for example.
Sample Output of Program
![Output]()
Benefits of Using Arrays
- Memory Efficiency: Arrays are allocated in contiguous memory blocks, which makes them efficient in terms of memory usage.
- Fast Access: Accessing array elements by index is very fast, making them ideal for tasks that require frequent access to individual elements.
- Simplicity: Arrays are simple to understand and use, especially when working with large amounts of data of the same type.
Drawbacks of Arrays
- Fixed Size: Once an array is created, its size cannot be changed. This can be limiting if you need a dynamically sized collection.
- No Built-in Features for Dynamic Resizing: Arrays do not have built-in methods to add or remove elements (e.g., for dynamically changing data).