-
-
Save parzibyte/4b1b3e15441885689d6f9ad96005cdb7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void Main(string[] args) | |
{ | |
int[] arreglo = { 999, 28, 11, 96, 1, 2, 45, 0, 1 }; | |
int longitud = longitudDeArregloEntero(arreglo); | |
int longitudConLength = arreglo.Length; | |
Console.WriteLine("La longitud según método es {0}, y según .Length es {0}", longitud, longitudConLength); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment