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

方法描述

连接 String 的两个指定实例。

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

public static string Concat(
	string str0,
	string str1
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
str0 System-String 要连接的第一个字符串。
str1 System-String 要连接的第二个字符串。
返回值 System.String str0 和 str1 的连接。

提示和注释

该方法连接 str0 和 str1;它不添加任何分隔符。

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

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

下面的示例将一个人的名字、中间名和姓氏串联起来。

using System;

public class ConcatTest {
    public static void Main() {

        // we want to simply quickly add this person's name together
        string fName = "Simon";
        string mName = "Jake";
        string lName = "Harrows";

        // because we want a name to appear with a space in between each name, 
        // put a space on the front of the middle, and last name, allowing for
        // the fact that a space may already be there
        mName = " " + mName.Trim();
        lName = " " + lName.Trim();

        // this line simply concatenates the two strings
        Console.WriteLine("Welcome to this page, '{0}'!", string.Concat( string.Concat(fName, mName), lName ) );
    }
}

异常

异常 异常描述

命名空间

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