i have 100 objects of areas which have id and name i want to show name in combobox and their id's as index of combobox but this code is not working
private void Areadropdown()//show Areadropdown
    {
        List<Area> list = Area.Dropdown();
        foreach (Area a in list)
        {
          metroComboBox1.Items.Insert(a.Id,a.Areaname);
        }
    }
 
     
     
    