update listbox using class csharp

Code Example - update listbox using class csharp

                
                        listBox1.Items.Clear();
  foreach (var item in car)
    {
        listBox1.Items.Add(item.Key.ToString() + " " + item.Value.manufacturer);

     }
//by iq18but18cm