comobobox1.Items.Add("Suzuki");
comobobox1.Items.Add("Suzuki");


List<string> vehicle = new List<string>
{
"Ford",
"Honda",
"Chrysler"
};
var vName = vehicle.Where(v => v.Contains(comboBox1.Text));
foreach(var v in vName)
{
comboBox2.Items.Add(v);
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.