System.String.Concat 方法 (String, String, String, String)
方法描述
连接 String 的四个指定实例。
语法定义(C# System.String.Concat 方法 (String, String, String, String) 的用法)
public static string Concat( string str0, string str1, string str2, string str3 )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
str0 | System-String | 要连接的第一个字符串。 |
str1 | System-String | 要连接的第二个字符串。 |
str2 | System-String | 要连接的第三个字符串。 |
str3 | System-String | 要连接的第四个字符串。 |
返回值 | System.String | str0、str1、str2 和 str3 的连接。 |
提示和注释
该方法连接 str0、str1、str2 以及 str3;它不添加任何分隔符。
使用 Empty 字符串替代数组中的任何 null 对象。
System.String.Concat 方法 (String, String, String, String)例子
然后,它调用 Concat(String, String, String, String) 方法来重新组合打乱的单词。
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
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。