Create array with non-default value
create-array-with-non-default-value.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[] stringarray = Enumerable.Repeat("c# examples",3).ToArray();
int[] intarray = Enumerable.Repeat(100, 4).ToArray();
Boolean[] booleanarray = Enumerable.Repeat(true,2).ToArray();
Label1.Text = "string array.........<br />";
foreach (string s in stringarray)
{
Label1.Text += s + "<br />";
}
Label1.Text += "<br />int array.........<br />";
foreach (int i in intarray)
{
Label1.Text += i.ToString() + "<br />";
}
Label1.Text += "<br />boolean array.........<br />";
foreach (Boolean b in booleanarray)
{
Label1.Text += b.ToString() + "<br />";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - create array with non-default value</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - create array with non-default value
</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="create array with non-default value"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to get an element by index from a two dimensional array
- How to initialize a string array
- How to initialize a two dimensional string array
- How to check if an int array contains a value
- How to make array contains case insensitive
- How to initialize a double array
- How to convert a double array to a string
- How to concat two arrays
- How to clone an array
- How to delete an element from an array