17 lines
187 B
C#
Raw Normal View History

public class Wibble
{
public static void Main () {
Wibble w = new Wibble();
if (w == (null)) {
}
if (w != (null)) {
}
if ((null) == w) {
}
if ((null) != w) {
}
}
}