Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 24, 2021 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/bd879f2820830f12febdcc52c29201ac to your computer and use it in GitHub Desktop.
Save parzibyte/bd879f2820830f12febdcc52c29201ac to your computer and use it in GitHub Desktop.
static int longitudDeArregloEntero(int[] arreglo)
{
int longitud = 0;
foreach (var elemento in arreglo) longitud++;
return longitud;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment