Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Created April 3, 2016 22:37
Show Gist options
  • Save gavilanch/96bdb8abd51060719a3925602d795ac1 to your computer and use it in GitHub Desktop.
Save gavilanch/96bdb8abd51060719a3925602d795ac1 to your computer and use it in GitHub Desktop.
var miString = "Felipe";
// Devulve el char 'F'
var primerChar = miString.First();
var listadoNombres = new List<string>() { "Felipe", "Claudia" };
// Devuelve el string "Felipe"
var primerNombre = listadoNombres.First();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment