I have a dictionary which uses ulong as key and a structure as values, i.e.
public Dictionary<UInt64, OptimalOutputs> What_to_do>
Where optimaloutput structure is
public struct OptimalOutputs { public short gotoschool; public short goForDining; public short GoToAcademy; } How can I iterate in dictionary to print, every key along with values? I tried keyvalue pair but in vain