Q:

C# program to check the length of courses is more than 2 characters using Linq

0

C# program to check the length of courses is more than 2 characters using Linq

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to check the length of courses is more than 2 characters using Linq, which is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to check the length of courses is 
//more than 2 characters using Linq

using System;
using System.Linq;

class LinqDemo
{
    static void Main(string[] args)
    {
        string [] courses = { "BCA", "MCA", "MBA", "CCNA"};

        bool isgreater = false;
        
        isgreater = courses.All(c=>c.Length>2);
        
        Console.WriteLine("The length of all courses is more than 2 characters? --> " + isgreater);
    }
}

Output:

The length of all courses is more than 2 characters? --> True
Press any key to continue . . .

Explanation:

In the above program, we created a LinqDemo that contains the Main() method. In the Main() method we created an array of strings that contain academic courses.

isgreater = courses.All(c=>c.Length>2);

The above code will return a boolean value, here we check the length of all courses which are more than 2 characters or not. If the length of all courses is more than 2 characters then All() method will return true otherwise it will return false.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now