using System; public class Test { public static void Main() { int? x = 0; int y = 0; Console.WriteLine(x.GetType() == y.GetType()); } }