How to break two for loop at the highlighted line. (after showing the MessageBox.Show("THE ITEM ID DOES NOT EXIST.!"); )
bool conditionitem = true;
for (int cun = 0; cun < ItemIdNumber.Length; cun++)
{
    int Item_Id = Convert.ToInt32(ItemIdNumber[cun]);
    for (int yyu = 0; yyu <= 1258038; yyu++)
    {
        int weer = c[yyu];
        if (weer == Item_Id)
        {
            conditionitem = false;
            itemseq = yyu;
        }
    }
    if (conditionitem != false)
    {
        MessageBox.Show("THE ITEM ID DOES NOT EXIST.!");
        break; //--> here i want two break for two times
    }
}
By this break it only break the first loop.
 
     
     
     
    