您好我有未來型的兩點字典:獲得兩個庫的公共密鑰和共同的價值觀
SortedDictionary<string, ClusterPatternCommonMetadata> PatternMetaData { get; set; }
的ClusterPatternCommonMetadata物體看起來像:
int ChunkQuantity { get; set; }
SortedDictionary<int, int> ChunkOccurrences { get; set; }
首先我需要找到的按鍵方式PatternMetaData存在於兩個字典中。我覺得是這樣的:爲了做這樣的操作
List<string> commonKeysString=
vector.PatternMetaData.Keys.Intersect(currentFindingVector.PatternMetaData.Keys)
然後我需要找到創立鍵的共同價值觀......
是否有快速的方法(拉姆達,LINQ等等)
謝謝
您是否在尋找匹配鍵或匹配鍵/值?相關問題:http://stackoverflow.com/questions/3804367/testing-for-equality-between-dictionaries-in-c-sharp – deepee1