Obtenir la longueur d'un tableau en C#
Minahil Noor
16 février 2024
Cet article présentera une méthode pour trouver la longueur d’un tableau en C#.
Utilisez la propriété Array.Length
pour trouver la longueur d’un tableau en C#
En C#, nous pouvons utiliser la propriété Array.Length
pour trouver la longueur d’un tableau. Cette propriété recherche le nombre total d’éléments présents dans un tableau. La syntaxe correcte pour utiliser cette propriété est la suivante.
ArrayName.Length;
Cette propriété renvoie la longueur du tableau.
Le programme ci-dessous montre comment utiliser la propriété Array.Length
pour trouver la longueur d’un tableau.
using System;
namespace FindLength {
class Length {
public static void Main() {
string[] flowers;
flowers = new string[] { "Rose", "Jasmine", "Lili", "Hibiscus", "Tulip", "Sun Flower" };
foreach (string flower in flowers) Console.Write(flower + "\n");
Console.Write("\nThe Number of Elements in the Array is: ");
Console.Write(flowers.Length);
}
}
}
Production:
Rose Jasmine Lili Hibiscus Tulip Sun Flower
The Number of Elements in the Array is : 6