Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
BindingList を List に変換するにはどうすればよいですか?
これを試して
List<int> list = yourBindingList.ToList();
int はあなたのタイプです =)
.NET 2.0 を使用している場合、これが解決策です。
public List<T> ToList() { return new List<T>(this); // this - is a BindingList compatible object }