The following example shows how to break out of a foreach statement in c#. If break statement is used within the loop body, it stops the loop iterations and goes immediately after the loop body.
static void Main(string[] args)
{
try
{
var names = new List<string>() { "Car", "Bike", "Bus" };
foreach (string name in names)
{
if (name == "Bike")
{
break;
}
Console.WriteLine(name);
}}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
Console.ReadLine();
}
Output:
Car
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article