System.String.Concat 方法 (Object, Object)

方法描述

连接两个指定对象的字符串表示形式。

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

public static string Concat(
	Object arg0,
	Object arg1
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
arg0 System-Object 要连接的第一个对象。
arg1 System-Object 要连接的第二个对象。
返回值 System.String arg0 和 arg1 的值经过连接的字符串表示形式。

提示和注释

方法连接 arg0 和 arg1,方式是调用无参数 ToString 方法,该方法为 arg0 和 arg1 的;它不会添加任何分隔符。

使用 String.Empty 字符串替代任何 null 参数。

如果其中任一参数为数组引用,则此方法将连接表示该数组的字符串,而不是其成员(例如“System.String[]”)。

System.String.Concat 方法 (Object, Object)例子

下面的示例说明 Concat 方法。

using System;

class stringConcat5 {
    public static void Main() {
    int i = -123;
    Object o = i;
    Object[] objs = new Object[] {-123, -456, -789};

    Console.WriteLine("Concatenate 1, 2, and 3 objects:");
    Console.WriteLine("1) {0}", String.Concat(o));
    Console.WriteLine("2) {0}", String.Concat(o, o));
    Console.WriteLine("3) {0}", String.Concat(o, o, o));

    Console.WriteLine("\nConcatenate 4 objects and a variable length parameter list:");
    Console.WriteLine("4) {0}", String.Concat(o, o, o, o));
    Console.WriteLine("5) {0}", String.Concat(o, o, o, o, o));

    Console.WriteLine("\nConcatenate a 3-element object array:");
    Console.WriteLine("6) {0}", String.Concat(objs));
    }
}
// The example displays the following output:
//    Concatenate 1, 2, and 3 objects:
//    1) -123
//    2) -123-123
//    3) -123-123-123
//    
//    Concatenate 4 objects and a variable length parameter list:
//    4) -123-123-123-123
//    5) -123-123-123-123-123
//    
//    Concatenate a 3-element object array:
//    6) -123-456-789

异常

异常 异常描述

命名空间

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