LazyInitializer vs Lazy<T> class. When to use each one

Viewed 13395

What are the differences between LazyInitializer and Lazy<T> classes? I know they both will initialize the object only on demand. When do I need to use each of them?

7 Answers
Related