Lazy <T> what it does.
It's a new feature of .Net Framework 4.5
According to MSDN:
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