I have one Dictionary declared as type
var dictionary1 = Dictionary<string, Type1>
and another as
var dictionary2 = Dictionary<string, Type2>
Each dictionary value type has a public variable called classid
so:
dictionary1["key"].classid = 100
is also in:
dictionary2["key"].classid = 100
I know they are of different types, but is there an inbuilt way to find the intersections of just these two private variables and possibly return me a dictionary of that single type? So if the classid were equivalent I could get an intersected dictionary of Type Dictionary1?