System.String.Concat 方法 (String[])

方法描述

连接指定的 String 数组的元素。

语法定义(C# System.String.Concat 方法 (String[]) 的用法)

public static string Concat(
	params string[] values
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
values System-String[] 字符串实例的数组。
返回值 System.String values 的连接元素。

提示和注释

该方法连接 values 中的每个对象;它不添加任何分隔符。

使用 Empty 字符串替代数组中的任何 null 对象。

System.String.Concat 方法 (String[])例子

下面的示例演示如何对 String 数组使用 Concat 方法。

using System;

public class ConcatTest {
    public static void Main() {

        // make an array of strings. Note that we have included spaces
        string [] s = { "hello ", "and ", "welcome ", "to ", "this ", "demo! " };

        // put all the strings together
        Console.WriteLine(string.Concat(s));

        // sort the strings, and put them together
        Array.Sort(s);
        Console.WriteLine(string.Concat(s));
    }
}

异常

异常 异常描述
ArgumentNullException values 为 null。
OutOfMemoryException 内存不足。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.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 系统要求。