
Use Lazy Initialization to Conserve Resources
Say you have an object with a property that uses a relatively large amount of resources?and you know the property may never be accessed. Consider waiting to create the property until it’s actually needed?especially if you are creating large numbers of these objects. Delaying creation in this manner is called