I am using C#. I have a list of items. I loop through each item using a foreach. Inside my foreach I have a lot of if statements ch
foreach
if
The continue keyword will do what you are after. break will exit out of the foreach loop, so you'll want to avoid that.
continue
break