T
Thomas Mercer-Hursh
Guest
Are you trying to write your own object manager instead of relying on garbage collection? If so, then each request for an object you would need to keep your own count and then decrement that count when the object is no longer used. I.e., do the same thing the GC is doing for you.
Continue reading...
Continue reading...