Null literal is null type. It means, it indicates that the reference points to no object.
Example:
class program
{
public class pen
{
public int ink, cap;
}
static void Main()
{
pen p = null;
Console.WriteLine(p.ink);
Console.WriteLine(p != null);
Console.WriteLine(p == null);
}
}