17 lines
187 B
C#
17 lines
187 B
C#
|
public class Wibble
|
||
|
{
|
||
|
public static void Main () {
|
||
|
Wibble w = new Wibble();
|
||
|
if (w == (null)) {
|
||
|
}
|
||
|
|
||
|
if (w != (null)) {
|
||
|
}
|
||
|
|
||
|
if ((null) == w) {
|
||
|
}
|
||
|
|
||
|
if ((null) != w) {
|
||
|
}
|
||
|
}
|
||
|
}
|