foreach 条件で現在のアイテムの文字列を取得したい。
public void checkStock()
{
foreach (var listBoxItem in listBox1.Items)
{
if (Convert.ToInt32(GetStock(listBox1.Items.ToString())) == 0)
{
MessageBox.Show("Item not in stock ");
}
}
}
のように在庫のない商品名を表示できるように
MessageBox.Show("{0}" +"not in stock" , listbox.items.ToString());