String.Concat Method (String, String, String, String)
.NET Framework 4
Concatenates four specified instances of String.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- str0
- Type: System.String
The first string to concatenate.
- str1
- Type: System.String
The second string to concatenate.
- str2
- Type: System.String
The third string to concatenate.
- str3
- Type: System.String
The fourth string to concatenate.
The method concatenates str0, str1, str2, and str3; it does not add any delimiters.
An Empty string is used in place of any null object in the array.
The following example defines an array of four-letter words and stores their individual letters to a string array in order to scramble them. It then calls the Concat(String, String, String, String) method to reassemble the scrambled words.
using System; using System.Collections; public class Example { public static void Main() { const int WORD_SIZE = 4; // Define some 4-letter words to be scrambled. string[] words = { "home", "food", "game", "rest" }; // Define two arrays equal to the number of letters in each word. double[] keys = new double[WORD_SIZE]; string[] letters = new string[WORD_SIZE]; // Initialize the random number generator. Random rnd = new Random(); // Scramble each word. foreach (string word in words) { for (int ctr = 0; ctr < word.Length; ctr++) { // Populate the array of keys with random numbers. keys[ctr] = rnd.NextDouble(); // Assign a letter to the array of letters. letters[ctr] = word[ctr].ToString(); } // Sort the array. Array.Sort(keys, letters, 0, WORD_SIZE, Comparer.Default); // Display the scrambled word. string scrambledWord = String.Concat(letters[0], letters[1], letters[2], letters[3]); Console.WriteLine("{0} --> {1}", word, scrambledWord); } } } // The example displays output like the following: // home --> mheo // food --> oodf // game --> aemg // rest --> trse
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.