You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
633 B
C#

/*
* C# Program to Find the Rank of a given Array
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpDemoApps
{
class Program
{
static void Main(string[] args)
{
int[] array1 = new int[5] { 1, 2, 3, 4, 5 };
int[,] array2 = new int[10, 3];
Console.WriteLine("Total dimensions of Array is : " + array1.Rank);
Console.WriteLine("Total dimensions of Array is : " + array2.Rank);
Console.ReadLine();
}
}
}
/*
Total dimensions of Array is : 1
Total dimensions of Array is : 2