Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#
int n = x.Length;

x is an array
using System.Collections.Generic;
int n = x.Count;

Works for a List object.

If x is of type IEnumerable, use Count() instead.
with Ada.Containers.Vectors;
use Ada.Containers;
N : Count_Type := X.Length;

New implementation...
< >
programming-idioms.org