J'ai un ItemCollection
que je voudrais interroger en utilisant LINQ. J'ai essayé l'exemple suivant (artificiel):
var lItem =
from item in lListBox.Items
where String.Compare(item.ToString(), "abc") == true
select item;
Visual Studio me dit toujours Cannot find an implementation of the query pattern for source type 'System.Windows.Controls.ItemCollection'. 'Where' not found. Consider explicitly specifying the type of the range variable 'item'.
Comment résoudre le problème?