Given some Dictionaries
Dictionary<string, string> GroupNames = new Dictionary<string, string>();
Dictionary<string, string> AddedGroupNames = new Dictionary<string, string>();
I am unable to merge them into one:
GroupNames = GroupNames.Concat(AddedGroupNames);
because "the type can't be implicitly converted". I believe (and my code proves me true) their type is the same - what am I overlooking?