在C#中,可以使用==
运算符来比较两个字符串是否相等。示例如下:
string str1 = "hello";
string str2 = "world";
if(str1 == str2)
{
Console.WriteLine("字符串相等");
}
else
{
Console.WriteLine("字符串不相等");
}
如果需要忽略字符串的大小写进行比较,可以使用String.Equals
方法并传入StringComparison.OrdinalIgnoreCase
参数。示例如下:
string str1 = "Hello";
string str2 = "hello";
if(str1.Equals(str2, StringComparison.OrdinalIgnoreCase))
{
Console.WriteLine("字符串相等");
}
else
{
Console.WriteLine("字符串不相等");
}