Tag: initialization
-
Lazy<> is Your Friend
The Lazy class is a nice little tool that was added in .NET 4. Like the name implies, it helps with lazy initialization of data. That way the data is initialized when you ask for it instead of when you class is constructed.

You must be logged in to post a comment.