Hi guys,
Anyone can help me to populate treeview using dictionary please!here is the code i used:
private void BuildLocationTree()
{
foreach (Country country in Locationclass.locations)
{
TreeNode node = this.locationTreeView.Nodes.Add(country.name);
if...