[C#] Generic Type의 다른 List를 만드는 Collection
따라서 Public의 읽기와 쓰기 함수는Generic에서 비Generic Collection을 만들어서 해결할 수 있습니다.
using System.Collections.Generic;
public sealed class ListCollection : IEnumerable
{
readonly Dictionary<Type, IEnumerable> m_Lists = new Dictionary<Type, IEnumerable>();
public void Add<T>(List<T> list)
{
m_Lists.Add(typeof(T), list);
}
public bool TryGetValue<T>(out List<T> list)
{
if (m_Lists.TryGetValue(typeof(T), out var enumerable))
{
list = enumerable as List<T>;
return true;
}
else
{
list = null;
return false;
}
}
IEnumerator IEnumerable.GetEnumerator() => m_Lists.GetEnumerator();
}
초기 화자에 대응하기 때문에 다음과 같이 사용할 수 있다.var lists = new ListCollection() { new List<float>(), new List<int>(), new List<string>() };
List<float> floats;
lists.TryGetValue(out floats);
Reference
이 문제에 관하여([C#] Generic Type의 다른 List를 만드는 Collection), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/momoma/articles/466cf995b2aa2c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)