List<string>をcomboBoxの内容に入れ替えたいんですが、

list.Clear();
foreach (var item in comboBox1.Items)
{
list.Add(item.ToString());
}

もっといい書き方ありますか?