我有這樣的代碼:錯誤填充的ObservableCollection
ObservableCollection<GuiQuestionCluster> clusters = new ObservableCollection<GuiQuestionCluster>(this.ExaminationViewModel.Examination.QuestionClusters);
所以,this.ExaminationViewModel.Examination.QuestionClusters
是QuestionCluster
的類型。 QuestionCLuster
是GuiQuestionCluster
的超類。我寫的代碼不起作用,它會給出錯誤。但我想知道我是如何解決這個問題的,是否有一個小技巧呢?
第一個錯誤:
Error 1 The best overloaded method match for 'System.Collections.ObjectModel.ObservableCollection.ObservableCollection(System.Collections.Generic.IEnumerable)' has some invalid arguments
二:
Error 2 Argument 1: cannot convert from 'System.Collections.ObjectModel.ReadOnlyCollection' to 'System.Collections.Generic.IEnumerable'
請提供具體的錯誤信息。 – 2011-05-09 12:38:27
我編輯了它.... – Ruben 2011-05-09 12:40:40