By default only reference types are nullable types. If you want a variable to allow nulls you have to define it as nullable using the "?" character (for this you need C# 2.0 or up).
enum MyEnum
{
ValueOne,
ValueTwo
}
and in your class
MyEnum? myvariable = null;