This is a C# Program to display the smallest numbers in an array using from clause linq.
This C# Program Displays the Smallest numbers in an Array using FROM Clause LINQ.
Here the from clause allows to obtain the result of an expression inside the query expression.
Here is source code of the C# Program to Display the Smallest numbers in an Array using FROM Clause LINQ. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * C# Program to Display the Smallest numbers in an Array using FROM Clause LINQ */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication2 { class program { static void Main() { int[] numbers = { 50,30,45,10,60,100,500,300,40,22,44,55,66,1000 }; var program = from num in numbers where num < 50 select num; Console.WriteLine("Numbers less than 50 are :"); foreach (int i in program) { Console.Write(i + " "); } Console.ReadLine(); } } }
This C# program is used to print the smallest numbers in an array using from clause LINQ. We have already defined the values of ‘array[]’ variable. Here ‘from’ clause allows obtaining the result of an expression inside the query expression.
The where clause is used in a query expression to specify which elements from the data source will be returned in the query expression. The foreach() function is used to print the values of an element less than 50.
Numbers less than 50 are : 30 45 10 40 22 44
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
- Check MCA Books
- Apply for Computer Science Internship
- Check Computer Science Books
- Check C# Books
- Practice Computer Science MCQs