A version of CollectionPool<T0,T1> for Dictionaries.
using UnityEngine.Pool;
public class Example { void GetPooled() { // Get a pooled instance var instance = DictionaryPool<int, int>.Get();
// Use the Dictionary
// Return it back to the pool DictionaryPool<int, int>.Release(instance); } }