+1 vote
in Dot Net by

What is an object pool in .NET?

1 Answer

0 votes
by

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.

Related questions

+1 vote
asked Jun 25, 2019 in Dot Net by Venkatshastri
+1 vote
+1 vote
asked Jun 25, 2019 in Dot Net by Venkatshastri
...