Array last element
array-last-element.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[] birds = new string[]
{
"Eurasian Coot",
"Okinawa Rail",
"Water Rail",
"Virginia Rail",
"African Finfoot"
};
Label1.Text = "birds array.........<br />";
foreach(string s in birds)
{
Label1.Text += s + "<br />";
}
string lastbird = birds.Last();
string lastRail = birds.Last(x => x.EndsWith("Rail"));
Label1.Text += "<br />last bird of birds array: " + lastbird;
Label1.Text += "<br />last bird of birds array which ends with 'Rail: " + lastRail;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - array last element</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - array last element
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="array last element"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to resize an array
- How to find an element from an array
- How to find all elements from an array that match the conditions
- How to perform for loop through an array elements
- How to fill an array with a single value
- How to get the first element of an array
- How to filter an array elements
- How to get the length of an array
- How to get value of a specified element of an array
- How to insert an element to an array