For Each…Next Loop in VB.net
By: Ramlak Printer Friendly Format
You use the For Each…Next loop to loop over elements in an array or a Visual Basic collection. This loop is great, because it automatically loops over all the elements in the array or collection—you don't have to worry about getting the loop indices just right to make sure you get all elements, as you do with a For loop. Here's the syntax of this loop:
For Each element In group [statements] [Exit For] [statements] Next [element]
You can get a look at this loop in action with an example like this, in which I'm displaying all the elements of an array:
Module Module1 Sub Main() Dim intIDArray(3), intArrayItem As Integer intIDArray(0) = 0 intIDArray(1) = 1 intIDArray(2) = 2 intIDArray(3) = 3 For Each intArrayItem In intIDArray System.Console.WriteLine(intArrayItem) Next intArrayItem End Sub End Module
And here's the result of this code:
0 1 2 3 Press any key to continue
Comment on this tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Subscribe to Tutorials
Related Tutorials
Changes in Controls from VB6 to VB.net
Throwing a Custom Exception in VB.net
Throwing an Exception in VB.net
Using Multiple Catch Statements in VB.net
Exception Filtering in the Catch Block in VB.net
Raising an Exception Intentionally in VB.net
Getting an Exception's Number and Description in VB.net
Using On Error GoTo 0 in VB.net
Using Resume Next and Resume Line in VB.net
Preserving a Variable's Values between Procedure Calls in VB.net
Specifying Optional Arguments with default values in Procedures in VB.net