c# array append - add new item in end of existing array
array-append.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[] birds = new string[]
{
"Northern Raven",
"Barn Swallow",
"Horned Lark"
};
Label1.Text = "birds array[" + birds.Length.ToString()+ "].........<br />";
foreach(string s in birds)
{
Label1.Text += s + "<br />";
}
Array.Resize(ref birds, birds.Length + 1);
birds[birds.Length - 1] = "Cape Grassbird";
Label1.Text += "<br />after added new item birds array[" + birds.Length.ToString() + "].........<br />";
foreach (string s in birds)
{
Label1.Text += s + "<br />";
}
Array.Resize(ref birds, birds.Length + 1);
birds[birds.Length - 1] = "Common Chiffchaff";
Label1.Text += "<br />after added new item birds array["+ birds.Length.ToString()+"].........<br />";
foreach (string s in birds)
{
Label1.Text += s + "<br />";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# array append - add new item in end of existing array</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# array append example - add new
<br /> item in end of existing array
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br />
<asp:Button
ID="Button1"
runat="server"
Text="add new item in end of existing array"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
