c# example - copy items from list to list without foreach
copy-items-from-list-to-list.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
List<string> redcolors = new List<string> { "red", "indianred", "crimson", "pink" };
Label1.Text = "Red Colors: ";
foreach (string s in redcolors)
{
Label1.Text += s + " | ";
}
List<string> newredcolors = new List<string>(redcolors);
Label1.Text += "<br />Copy Of Red Colors List: ";
foreach (string s in newredcolors)
{
Label1.Text += s + " | ";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - copy items from list to list without foreach</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - how to copy items from
<br /> list to list without foreach
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="copy items from list to list"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>