Update ContextFlyout

This commit is contained in:
2026-02-05 13:52:53 +09:00
parent eadd13931f
commit 9bbccfc8f8
20 changed files with 258 additions and 105 deletions

View File

@@ -19,4 +19,7 @@ public class CollectionPool<TCollection, TItem>
}
}
public class ListPool<T> : CollectionPool<List<T>, T>;
public class ListPool<T> : CollectionPool<List<T>, T>;
public class HashSetPool<T> : CollectionPool<HashSet<T>, T>;
public class DictionaryPool<TKey, TValue> : CollectionPool<Dictionary<TKey, TValue>, KeyValuePair<TKey, TValue>>
where TKey : notnull;