I\'m trying to convert an F# map to a C# dictionary, so far I am using:
let toDictionary (map : Map<_, _>) : Dictionary<_, _> = let d
A C# Dictionary will take an IDictionary in it's constructor. Map is an IDictionary so:
Dictionary
IDictionary
Map
let toDictionary (map : Map<_, _>) : Dictionary<_, _> = Dictionary(map)