top button
Flag Notify
Site Registration

What is an object pool in .NET?

+1 vote
268 views
What is an object pool in .NET?
posted Dec 3, 2014 by Balu

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

An object pool is a container having objects ready to be used. It tracks the object that is currently in use, total number of objects in the pool. This reduces the overhead of creating and re-creating objects.

answer Dec 3, 2014 by Manikandan J
...