Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Basic Algorithm Exercises: Create a new list from a given list of strings where strings will be in upper case in new string


C# Sharp Basic Algorithm: Exercise-147 with Solution

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.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new list from a given list of strings where strings will be in upper case in new string.

Sample Solution:

C# Sharp Code:

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();
          }    
    } 
}

Sample Output:

ABC CDEF JS PHP

Flowchart:

C# Sharp: Flowchart: Create a new list from a given list of strings where strings will be in upper case in new string.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to create a new list of the rightmost digits from a given list of positive integers.
Next: Write a C# Sharp program to remove all "a" in each string in given list of strings and return the new string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.