A simple object recycling system.
public abstract class ObjectCache<T>
where T : class
kind:method, kind:property, kind:ctor. Press Esc to clear.ObjectCache()Initializes a new instance of the ObjectCache<T> class.Clear()Clears this cache.Get()Gets a new instance.NewInstance()Creates a new instance of {T}Release(T)Releases the specified instance.Reset(T)Resets the specified instance when Release(T) is called before storing back to this cache.