show/hide this revision's text 2 added 39 characters in body

Implementing the Singleton Pattern in C# talks about this problem in the third version.

It says:

Making the instance variable volatile can make it work, as would explicit memory barrier calls, although in the latter case even experts can't agree exactly which barriers are required. I tend to try to avoid situations where experts don't agree what's right and what's wrong!

I'd say it's an area of doubt,

The author seems to imply that double locking is less likely to work than other strategies and thus you're better off trying something elseshould not be used.

show/hide this revision's text 1

Implementing the Singleton Pattern in C# talks about this problem in the third version.

It says:

Making the instance variable volatile can make it work, as would explicit memory barrier calls, although in the latter case even experts can't agree exactly which barriers are required. I tend to try to avoid situations where experts don't agree what's right and what's wrong!

I'd say it's an area of doubt, and thus you're better off trying something else.