// OK
struct MyStruct
{
static void Foo() { }
}
// Error
static struct MyStruct
{
}
|
|
|
Since you cannot create an instance of a static type, the behavior of Note that Technically speaking I don't think that the current C# compiler & runtime could produce something like a |
||||
|
|
|
I think the key, really, is that a struct is a value type, not a reference type. That would be like saying "There's only one instance of |
|||
|
|
|
The key point here is that the static modified on a class enforces (amongst other things) that an instance of the class cannot be created. This is done by forcing a private constructor. The CLR doesn't have any way to prevent an instance of a struct type from being created. Even if there is no public default constructor, simply declaring
would create an instance of the struct with all of the associated memory set to zero bits. This is different from a reference type (class) where the same code would create a reference of the specified type (referencing no object aka null) but not an instance of the object itself. |
|||
|
|