You could use a static constructor
static MyClass()
{
Initialized = false;
}
However, as has been mentioned by others the default value of a bool will be false.
You could use a static constructor
static MyClass()
{
Initialized = false;
}
However, as has been mentioned by others the default value of a bool will be false.