ArrayList CopyTo() method with starting index
ArrayListCopyToMethodWithStartingIndex.aspx
<%@ Page Language="C#" AutoEventWireup="true" %>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
ArrayList colors = new ArrayList() {"GreenYellow","LightBlue","Plum"};
Label1.Text = "ArrayList Elements....";
foreach (string color in colors)
{
Label1.Text += "<br />" + color;
}
string[] colorArray = {"PaleVioletRed","PeachPuff","Peru","Snow","Sienna"};
Label1.Text += "<font color=Green>";
Label1.Text += "<br /><br />Array Elements...";
foreach (string color in colorArray)
{
Label1.Text += "<br />" + color;
}
Label1.Text += "</font>";
colors.CopyTo(colorArray,1);
Label1.Text += "<br /><br />After Call CopyTo(Array, Int32) Method; Array Elements...";
foreach (string color in colorArray)
{
Label1.Text += "<br />" + color;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>How to copy ArrayList to a compatible Array, starting at the specified index of the array</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
System.Collections.ArrayList CopyTo(Array, Int32) Method
<br /> How to copy ArrayList to a compatible
<br /> Array, starting at the specified index of the array
</h2>
<hr width="525" align="left" color="Navy" />
<br />
<asp:Label
ID="Label1"
runat="server"
ForeColor="SaddleBrown"
Font-Size="Large"
Font-Names="Courier New"
Font-Italic="true"
Font-Bold="true"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
OnClick="Button1_Click"
Text="Test ArrayList CopyTo(Array, Int32) Method"
Height="45"
Font-Bold="true"
ForeColor="DodgerBlue"
/>
</div>
</form>
</body>
</html>
