23 lines
628 B
C#
23 lines
628 B
C#
/*
|
|
* 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();
|
|
}
|
|
}
|
|
|
|
/*
|
|
Length of ArrayA : 5
|
|
Length of the LongLength Array is :5
|
|
The Size of 2D Array is : 50 |