adspace


What is lazy initialization?

Answer Posted / Sajal Shukla

Lazy initialization is a technique where an object's state is not initialized until it is actually needed. This can improve the performance of an application by reducing the number of objects created at startup, but may introduce issues related to thread safety if not implemented correctly.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143