Lazy Initailization in .NET 4.0

Posted on C# Corner See other posts from C# Corner
Published on 5/17/2010 12:25:19 AM Indexed on 2010/05/18 8:02 UTC
Read the original article Hit count: 285

Filed under:
Lazy initialization or lazy instantiation means that an object is not created until it is first referenced. Lazy initialization is used to reduce wasteful computation, memory requirements. Following is an example where Lazy initialization is particularly useful.

© C# Corner or respective owner