w3resource

C#: Create a new list from a given list of strings where each element is replaced by 4 copies of the string concatenated together


C# Sharp Basic Algorithm: Exercise-144 with Solution

Write a C# Sharp program to create a list from a given list of strings. Each element is replaced by 4 copies of the string concatenated together.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new list from a given list of strings where each element is replaced by 4 copies of the string concatenated together.

Sample Solution:

C# Sharp Code:

using System; // Importing the System namespace for basic functionality
using System.Collections.Generic; // Importing the namespace for working with collections
using System.Linq; // Importing the namespace for LINQ operations

namespace exercises // Defining a namespace called 'exercises'
{
    class Program // Defining a class named 'Program'
    {
        static void Main(string[] args) // The entry point of the program
        {
            // Creating a List of strings and assigning the result of the 'test' method
            List<string> mylist = test(new List<string>(new string[] { "1", "2", "3", "4" }));

            // Displaying the elements of 'mylist' in the console
            foreach (var i in mylist)
            {
                Console.Write(i.ToString() + " "); // Output each element followed by a space
            }
        }

        // Method that takes a List of strings and concatenates each string with itself four times
        public static List<string> test(List<string> nums_str)
        {
            // Using LINQ to concatenate each string in 'nums_str' with itself four times
            IEnumerable<string> s = nums_str.Select(x => x = x + x + x + x);

            // Converting the IEnumerable 's' to a new List and returning it
            return s.ToList();
        }
    }
}

Sample Output:

1111 2222 3333 4444

Flowchart:

C# Sharp: Flowchart: Create a new list from a given list of strings where each element is replaced by 4 copies of the string concatenated together.

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 from a given list of strings where each element has "#" added at the beginning and end position.
Next: Write a C# Sharp program to create a new list from a given list of integers where each integer value is added to 2 and the result value is multiplied by 5.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.