C# Array Tutorial with Programming Example

In this chapter you will learn:
  • What is array in C#?
  • What is one dimensional array?
  • What is multi dimensional array?
  • What is param array?
  • How to pass array as parameter?
  • Array function

An array is a collection of the variable of same data type. If you have to declare 1000 integer variables, then you can declare an integer type array with 1000 elements. The value of array can be accessed using index position of array. The first index position of array is zero.

In C#, there two types of array: Single Dimensional Array and Multi-Dimensional Array. You can use both types of array easily and can access its element using loop constructs or index position.

 

C# Array

List of Contents

Summary

After completing this session you will be able to describe different parts of array as one dimensional array, multi dimensional array, param array, array function etc. So, let’s start with declaring array in C#.

More Examples

Write A Program To Print One Dimensional Array In Reverse Order
Write A Program To Sort One Dimensional Array In Descending Order Using Non Static Method.
Write A Program To Sort One Dimensional Array In Desending Order Static Class Array Method.
Write A Program To Sort One Dimensional Array In Ascending Order Using Non Static Method.
Write A Program To Sort One Dimensional Array In Ascending Order Using Static Method.
Write A Program To Add The Diagonal Of Two-Dimensional Array.
 

Share your thought