Array foreach loop
array-foreach.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[] birds = new string[]
{
"Harlequin Duck",
"Australasian Grebe",
"American White Pelican",
"Australian White Ibis",
"Eurasian Spoonbill",
"Northern Crested Caracara"
};
Label1.Text = "birds array elements.........<br />";
//get array elements using foreach loop
foreach (string bird in birds)
{
Label1.Text += bird + "<br />";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - array foreach</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - array foreach
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
>
</asp:Label>
<br />
<asp:Button
ID="Button1"
runat="server"
Text="test array foreach"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to concat two arrays
- How to clone an array
- How to create an array with non-default value
- How to delete duplicate elements from an array
- How to get distinct values from an array
- How to create an array with different data types
- How to check whether an element exists in an array
- How to resize an array
- How to find an element from an array
- How to find all elements from an array that match the conditions