C#判断2字符串是否相等
时间: 2023-08-03 17:06:06 浏览: 106
C#判断字符串是否为数字字符串
5星 · 资源好评率100%
在C#中,可以使用`==`运算符来判断两个字符串是否相等。例如:
```csharp
string str1 = "hello";
string str2 = "world";
string str3 = "hello";
if (str1 == str2)
{
Console.WriteLine("str1 equals str2");
}
else
{
Console.WriteLine("str1 does not equal str2");
}
if (str1 == str3)
{
Console.WriteLine("str1 equals str3");
}
else
{
Console.WriteLine("str1 does not equal str3");
}
```
输出为:
```
str1 does not equal str2
str1 equals str3
```
注意,在C#中,字符串是引用类型,所以比较字符串时应该使用`==`运算符而不是`Equals()`方法。
阅读全文