Any operator with an string array
any-operator-with-an-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[]
{
"Sooty Albatross",
"Southern Giant Petrel",
"Brown Pelican",
"Fairy Prion"
};
Label1.Text = "birds array.........<br />";
foreach(string s in birds)
{
Label1.Text += s + "<br />";
}
Boolean resultA = birds.Any(x => x.StartsWith("A"));
Label1.Text += "<br />any bird name starts with ['A']? " + resultA;
Boolean resultB = birds.Any(x => x.StartsWith("B"));
Label1.Text += "<br />any bird name starts with ['B']? " + resultB;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# linq example - any operator with an string array</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# linq example - any operator with an string array
</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="test any operator with an string array"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to sum all elements of an int array
- How to use array any
- How to pass an array as a parameter to a method
- How to create an array with non-default value
- How to delete an element from an array
- How to get dimension length of an array
- How to get difference between two arrays
- How to fill an array with a single value
- How to get the first element of an array
- How to get the last element of an array