Write a C# Sharp program to create a new list from a given list of strings where strings will be in upper case in new string
- برمجة سي شارب
- برمجة
- 2021-05-17
- MarwaMohammed
الأجوبة
using System;
using System.Collections.Generic;
using System.Linq;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
List<string> mylist = test(new List<string>(new string[] { "Abc", "cdef", "js" , "php" }));
foreach(var i in mylist)
{
Console.Write(i.ToString()+" ");
}
}
public static List<string> test(List<string> str)
{
IEnumerable<string> s = str.Select(x => x.ToUpper());
return s.ToList();
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال