What does beforefieldinit flag do? When I look into the IL of my class I see this flag but I don't know what this flag is actually doing?
|
|
|
|
|
|
|
See my article on this very issue. Basically, In practice it means that the class is initialized earlier than it would be otherwise - it's okay for it to be initialized at the start of the first method which might use it. Compare this with types which don't have So, suppose we have:
If both types have This is why it's common to use a static constructor (even an empty one!) when implementing the singleton pattern. |
||
|
|
