I have a C# dictionary:
Dictionary<int, ItemsClass> Items
ItemsClass
has a member called Number
I want to write a LINQ query that returns me the Dictionary key number for the ItemsClass
that has a Number
matching a certain value e.g. x.
How can I do this?