Saturday, 26 December 2015

In C# Program How to get the Length of the Array

/*
 * C# Program to get the Length of the Array
 */
using System;
class Program
{
    static void Main()
    {

        int[] arrayA = new int[5];
        int lengthA = arrayA.Length;
        Console.WriteLine("Length of ArrayA : {0}", +lengthA);
        long longLength = arrayA.LongLength;
        Console.WriteLine("Length of the LongLength Array  : {0}", longLength);
        int[,] twoD = new int[5, 10];
        Console.WriteLine("The Size of 2D Array is : {0}", twoD.Length);
        Console.ReadLine();
    }
}

----------------
OUTPUT:-

Length of ArrayA : 5
Length of the LongLength Array is :5
The Size of 2D Array is : 50
---------------------

3 comments: