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

  • برمجة سي شارب
  • برمجة

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

Sample Output:

ABC CDEF JS PHP

الأجوبة

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();
          }    
    } 
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...