299.
Can a static class have instance members?

Wrong
-----
static class Container
{
   public int qty { get; set; }
}

Correct
-------
static class Container
{
   public static int qty { get; set; }
}

A static class cannot have an instance members. Static classes can only have static members.