What is an Object Pool in .Net?

Technology CommunityCategory: C#What is an Object Pool in .Net?
VietMX Staff asked 3 years ago

Object Pooling is something that tries to keep a pool of objects in memory to be re-used later and hence it will reduce the load of object creation to a great extent. Whenever there is a request for a new object, the pool manager will take the request and it will be served by allocating an object from the pool.