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

Took a Codility Test : Decimal Reverse, Magnitude Pole and Most Number of Occurrence.

Concordance Algorithm

XML to ExpandoObject using Recursion in C#