Initialize string array
initialize-string-array.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[] birds = new string[] { "Snow Goose", "Tundra Swan", "Orinoco Goose", "Muscovy Duck" };
//another way to initialize string array
string[] morebirds = new string[3];
morebirds[0] = "Andean Condor";
morebirds[1] = "Greater Kestrel";
morebirds[2] = "Peregrine Falcon";
Label1.Text = "birds array.....<br />";
foreach (string s in birds)
{
Label1.Text += s + " | ";
}
Label1.Text += "<br /><br />more birds array.....<br />";
foreach (string s in morebirds)
{
Label1.Text += s + " | ";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - initialize string array</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - initialize string array
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="initialize string array"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to initialize a two dimensional string array
- How to convert a string array to a list
- How to convert a string to a byte array
- How to copy elements in one array to another array
- How to check if a string array contains a value
- How to check string contains a string in string array
- How to check char array contains a char
- How to add a new item in an existing array
- How to add a new item at the end of an existing array
- Array initialization syntaxes