Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created January 22, 2014 16:21
Show Gist options
  • Select an option

  • Save VladimirReshetnikov/8561758 to your computer and use it in GitHub Desktop.

Select an option

Save VladimirReshetnikov/8561758 to your computer and use it in GitHub Desktop.
using System;
class A
{
static void Main()
{
const int age = 25;
const short newAge = 25;
Console.WriteLine(age == newAge); // True
Console.WriteLine(newAge.Equals(age)); // True
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment