Created
June 18, 2013 00:47
-
-
Save Fhernd/5801813 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
class SeguridadDeTipos | |
{ | |
public static void Main() | |
{ | |
// ejemplo con tipo string | |
string cadenaDeTexto = "Texto de ejemplo"; | |
String otraCadenaDeTexto = "...más texto"; | |
// Al remover el comentario de la siguiente línea de código «Console.WriteLine...» | |
// se produce el siguiente mensaje de error: | |
// Error 2 Operator '*' cannot be applied to operands of type 'string' and 'string' | |
// Console.WriteLine(cadenaDeTexto * otraCadenaDeTexto); | |
// ejemplo con int | |
int enteroSimple = 19; | |
// La siguiente línea también generará un error debido a que en el tipo | |
// primitivo int, el método ToUpper no existe y no es válido. | |
// Console.WriteLine(enteroSimple.ToUpper()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment