protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "";
int[] a = { 1, 5, 4, 8, 9, 6 };
Label1.Text = "Original Array";
for (int i = 0; i < a.Length; i++)
{
Label1.Text += "<br>" + a[i].ToString();
}
Label1.Text = "<br>Linq";
var elements =from element in a where element>5 select element;
foreach (var x in elements)
{
Label1.Text += "<br>" + x;
}
}
Output

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!
Monday, September 15, 2014
Linq Simple Example with Array C#
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment