Array any
linq-example-array-any.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
int[] numbers = new int[] { 5,10,15,20,25};
Label1.Text = "numbers array.......<br/>";
foreach (int i in numbers)
{
Label1.Text += i.ToString() + "<br/>";
}
Boolean result = numbers.Any(x => x * 10 == 100);
Label1.Text += "<br />any (item * 10) == 100? " + result.ToString();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# linq example - array any</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# linq example - array any
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="test array any"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to sum all elements of an int array
- How to use linq any operator with a string array
- How to pass an array as a parameter to a method
- How to get dimension length of an array
- How to get difference between two arrays
- How to initialize an empty array
- How to make array except
- How to find an element from an array
- How to find all elements from an array that match the conditions
- How to perform foreach loop through an array elements