Lazy <T> what it does.

It's a new feature of .Net Framework 4.5

According to MSDN:
Use an instance of Lazy to defer the creation of a large or resource-intensive object or the execution of a resource-intensive task, particularly when such creation or execution might not occur during the lifetime of the program.
So what does this exactly  mean?

Comments

Popular posts from this blog

Serializing JSON string to ExpandoObject

Automatically Discover and Assign Parameter with Values to a Stored Procedure Call in C#