How to: Access Command-Line Arguments Using foreach (C# Programming Guide)
Another approach to iterating over the array is to use the foreach statement as shown in this example. The foreach statement can be used to iterate over an array, a .NET Framework collection class, or any class or struct that implements the IEnumerable interface.
Note |
|---|
When running an application in Visual Studio, you can specify command-line arguments in the Debug Page, Project Designer. |
Note