int ten=10;
System.Console.WriteLine(object.ReferenceEquals(ten, ten)) ; // prints False
—-
Why? ten is an int32, i.e. a struct instance. Copy-by-value. So 2 new instances of the struct instance are created on stack, with obviously different addresses.