Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 18, 2013 00:47
Show Gist options
  • Save Fhernd/5801813 to your computer and use it in GitHub Desktop.
Save Fhernd/5801813 to your computer and use it in GitHub Desktop.
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