Created
April 3, 2016 22:37
-
-
Save gavilanch/96bdb8abd51060719a3925602d795ac1 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
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