Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active June 24, 2021 20:10
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/14165529ee831cdf4301cbe7f24e89fd to your computer and use it in GitHub Desktop.
Save parzibyte/14165529ee831cdf4301cbe7f24e89fd to your computer and use it in GitHub Desktop.
static void recorrerArregloGenerico<T>(IList<T> arreglo)
{
foreach (var elemento in arreglo)
{
Console.WriteLine(elemento);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment