Posts Tagged: lazy

Lazy initialization

Lazy class in .NET 4.0 is a superb implementation for performance enhancement. But one thing that bothers me about it, is the setter property missing for the Lazy objects. You can not set object values once they loaded lazily. And

Lazy initialization

Lazy class in .NET 4.0 is a superb implementation for performance enhancement. But one thing that bothers me about it, is the setter property missing for the Lazy objects. You can not set object values once they loaded lazily. And