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

方法描述

连接指定 Object 数组中的元素的字符串表示形式。

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

public static string Concat(
	params Object[] args
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
args System-Object[] 一个对象数组,其中包含要连接的元素。
返回值 System.String args 中元素的值经过连接的字符串表示形式。

提示和注释

方法连接 args 中的每个对象,方法是调用对象的无参数 ToString 方法;它不会添加任何分隔符。

使用 String.Empty 替代数组中的任何 null 对象。

对调用者的说明

此方法不可由 C++ 代码调用。 C++ 编译器将对包含四个或更多对象参数的 Concat 的调用解析为对 Concat(Object, Object, Object, Object) 的调用。

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

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

using System;

public class ConcatTest {
    public static void Main() {
        // Create a group of objects.
        Test1 t1 = new Test1();
        Test2 t2 = new Test2();
        int i = 16;
        string s = "Demonstration";

        // Place the objects in an array.
        object [] o = { t1, i, t2, s };

        // Concatenate the objects together as a string. To do this,
        // the ToString method of each of the objects is called.
        Console.WriteLine(string.Concat(o));
    }
}

// Create two empty test classes.
class Test1 {
}

class Test2 {
}
// The example displays the following output:
//       Test116Test2Demonstration

异常

异常 异常描述
ArgumentNullException args 为 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 系统要求。