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.
IList<Customer>リストをにキャストするにはどうすればよいBindingList<Customer>ですか?
IList<Customer>
BindingList<Customer>
var yourList = new List<Customer>(); var listBinding = new BindingList<Customer>(yourList);
BindingListコンストラクタ
キャストを行う必要はありません。BindingList<T>クラスコンストラクターにIList<T>、を提供するだけです。
BindingList<T>
IList<T>