「string」、「string」のペアリストが必要です。
試した:
Dictionary<string, string> Categories= new Dictionary<string, string>();
ただし、「700」、「2」および「700」、「3」は追加できません。必要なときにすべてを追加できるペアが必要です。N ベクトル (文字列、文字列) を含むことができるベクトルのように。どの構造が必要ですか? すぐに、LINQ でそれらを比較する必要があるため、次のようにします。
myStructs = from MyObject s in MyObjects
join c in Categories on s.IDCategory.UniqueID equals c.Key
join d in Categories on s.Stars equals d.Value
select s;