Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class IgualdadTiposPrimitivos
- {
- static void Main()
- {
- int x = 1;
- int y = 2;
- int z = 1;
- Console.WriteLine(x == y); // False
- Console.WriteLine(x == z); // True
- Console.ReadKey();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement