System.String.Equals 方法 (String)
方法描述
确定此实例是否与另一个指定的 String 对象具有相同的值。
语法定义(C# System.String.Equals 方法 (String) 的用法)
public bool Equals( string value )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
value | System-String | 要与此实例进行比较的字符串。 |
返回值 | System.Boolean | 如果 value 参数的值与此实例相同,则为 true;否则为 false。 |
提示和注释
此方法执行顺序(区分大小写和区域性)比较。
System.String.Equals 方法 (String)例子
下面的示例说明 Equals 方法。
using System; public class Example { public static void Main() { string word = "File"; string[] others = { word.ToLower(), word, word.ToUpper(), "fıle" }; foreach (string other in others) { if (word.Equals(other)) Console.WriteLine("{0} = {1}", word, other); else Console.WriteLine("{0} {1} {2}", word, '\u2260', other); } } } // The example displays the following output: // File ≠ file // File = File // File ≠ FILE // File ≠ fıle
版本信息
.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 系统要求。