Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
foreach
foreach (type variable in collection) { .. }
string[] cars = { "Volvo", "BMW", "Ford", "Mazda" }; foreach (string car in cars) { Console.WriteLine(car); }
Volvo BMW Ford Mazda
Contact support