Initialize two dimensional string array
initialize-two-dimensional-string-array.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[,] birds = new string[3, 2]
{
{"Prairie","Falcon"},
{"Mississippi","Kite"},
{"Bald","Eagle"}
};
int rows = birds.GetUpperBound(0);
int columns = birds.GetUpperBound(1);
Label1.Text = "";
for (int currentRow = 0; currentRow <= rows;currentRow++ )
{
for (int currentColumn = 0; currentColumn <= columns;currentColumn++ )
{
Label1.Text += birds[currentRow, currentColumn] + " ";
}
Label1.Text += "<br />";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - initialize two dimensional string array</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - initialize two dimensional string array
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
>
</asp:Label>
<br />
<asp:Button
ID="Button1"
runat="server"
Text="initialize two dimensional string array"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to initialize a string array
- How to convert a string array to a list
- How to convert a string to a byte array
- How to get the average of an int array elements
- How to use linq any operator with a string array
- How to pass an array as a parameter to a method
- How to convert a string array to a double array
- How to convert a string array to an int array
- How to convert a decimal array to a double array
- How to convert a string array to a string