Write a program in C# Sharp to display the list of items in the array according to the length of the string then by name in ascending order
- برمجة سي شارب
- برمجة
- 2021-05-31
- ahmadghneem
الأجوبة
using System;
using System.Linq;
using System.Collections.Generic;
class LinqExercise28
{
static void Main(string[] args)
{
string[] cities =
{
"ROME","LONDON","NAIROBI","CALIFORNIA","ZURICH","NEW DELHI","AMSTERDAM","ABU DHABI", "PARIS"
};
Console.Write("\nLINQ : Display the list according to the length then by name in ascending order : ");
Console.Write("\n--------------------------------------------------------------------------------\n");
Console.Write("\nThe cities are : 'ROME','LONDON','NAIROBI','CALIFORNIA','ZURICH','NEW DELHI','AMSTERDAM','ABU DHABI','PARIS' \n");
Console.Write("\nHere is the arranged list :\n");
IEnumerable<string> cityOrder =
cities.OrderBy(str => str.Length)
.ThenBy(str => str);
foreach (string city in cityOrder)
Console.WriteLine(city);
Console.ReadLine();
}
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال