null == null ?

Test:

T - SQL:

if ( null = null )
print 'null == null'
else
print 'null != null'

C#:

Console.WriteLine(null == null);


Ce afiseaza fiecare? Si de ce?

Comments

Popular posts from this blog

IIS 7.5, HTTPS Bindings and ERR_CONNECTION_RESET

Verify ILogger calls with Moq.ILogger

Table Per Hierarchy Inheritance with Column Discriminator and Associations used in Derived Entity Types