Stack Constructor ICollection
StackConstructorICollection.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","DarkRed" };
Stack colors = new Stack(redColors);
Label1.Text = "Stack Elements... ";
Label1.Text += "<font color=Crimson>";
foreach (string color in colors)
{
Label1.Text += "<br />" + color;
}
Label1.Text += "</font>";
colors.Push("Yellow");
Label1.Text += "<br /><br />After Push 'Yellow', Now Stack Elements... ";
Label1.Text += "<font color=Crimson>";
foreach (string color in colors)
{
Label1.Text += "<br />" + color;
}
Label1.Text += "</font>";
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>How to initialize a new instance of Stack class that contains elements copied from specified collection</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
System.Collections.Stack Stack Constructor (ICollection)
<br /> How to initialize a new instance of the Stack class
<br /> that contains elements copied from the specified collection
</h2>
<hr width="575" align="left" color="Navy" />
<br />
<asp:Label
ID="Label1"
runat="server"
ForeColor="DarkGreen"
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 Stack Constructor (ICollection)"
Height="45"
Font-Bold="true"
ForeColor="DodgerBlue"
/>
</div>
</form>
</body>
</html>
