Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 23:04
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/9fbc62510aa3c44320c48ecc574ef0a6 to your computer and use it in GitHub Desktop.
Save parzibyte/9fbc62510aa3c44320c48ecc574ef0a6 to your computer and use it in GitHub Desktop.
class Ejemplo{
public static void Main(){
string saludo = "Hola, mundO";
if(saludo.EndsWith("o")){
System.Console.WriteLine("Termina con la letra o");
}else{
System.Console.WriteLine("No termina con o");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment