I have a dictionary
private Dictionary<int, data> mdata = new Dictionary<int, data>();
I would like to edit the Dictionary in the UI.
I think using with a DataGridView is a possibility.
How can I put the data from the dictionary into the DataGridView and after editing back into the dictionary?