Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class ConversionBooleanos
- {
- static void Main()
- {
- // declaración de variable entera de 32 bits
- int x = 123;
- // if (x) // Error: "Cannot implicitly convert type 'int' to 'bool'"
- {
- Console.WriteLine( "El valor de la variable 'x' es distinto de cero.");
- }
- if (x != 0)
- {
- Console.WriteLine( "El valor de la variable 'x' es distinto de cero.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement