Array sort descending
array-sort-descending.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[] birds = new string[]
{
"Crimson Rosella",
"Caspian Tern",
"Herring Gull",
"Black Skimmer",
"Varied Lorikeet"
};
Label1.Text = "birds array.........<br />";
foreach(string s in birds)
{
Label1.Text += s + "<br />";
}
//this query sort array in descending order
var result = from element in birds
orderby element descending
select element;
Label1.Text += "<br />descending sorted birds array.........<br />";
foreach (string s in result)
{
Label1.Text += s + "<br />";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - array sort descending</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - array sort descending
</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="sort array descending order"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to convert a byte array to a string
- How to copy elements in one array to another array
- How to check if a string array contains a value
- 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 string array
- How to convert a decimal array to a double array
- How to convert a string array to a string