한 목록 상자에서 항목을 충분히 단순한와의 인터페이스를 이동 :올바른 방법
myClass citem = (myClass)myListBop.SelectedItem.
viewModel.doSomethingWithItem(cItem)
를 뭐죠 여러위한 올바른 방법 항목? 데이터를리스트에 복사하는 예제를 보았습니다.하지만 확실하게 복사를 피하고 정확한 캐스트를 얻는 것이 가장 좋을까요? ReSharper에서 친절하게 내가 뭔가 잘못하고 될 수 있음을 나에게 알려 :
Suspicious case: there is no type in the solution which is inherited from both "Sytem.Windows.Forms.ListBox.SelectedObjectCollection" and "System,Collections.Generic.IList<myClass>"
는 기본적으로 IList의/SelectedObjectCollection의 의도 된 사용 무엇 : 제안은
?
기본 클래스 –