Advertisement
Fhernd

SeguridadDeTipos.cs

Sep 29th, 2014
973
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.79 KB | None | 0 0
  1. class SeguridadDeTipos
  2. {
  3.     public static void Main()
  4.     {
  5.         // ejemplo con tipo string
  6.         string cadenaDeTexto = "Texto de ejemplo";
  7.         String otraCadenaDeTexto = "...más texto";
  8.  
  9.         // Al remover el comentario de la siguiente línea de código «Console.WriteLine...»
  10.         // se produce el siguiente mensaje de error:
  11.         // Error    2   Operator '*' cannot be applied to operands of type 'string' and 'string'
  12.         // Console.WriteLine(cadenaDeTexto * otraCadenaDeTexto);
  13.  
  14.         // ejemplo con int
  15.         int enteroSimple = 19;
  16.         // La siguiente línea también generará un error debido a que en el tipo
  17.         // primitivo int, el método ToUpper no existe y no es válido.
  18.         // Console.WriteLine(enteroSimple.ToUpper());
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement