0
点赞
收藏
分享

微信扫一扫

怎么判断两个cstring变量是否相等?

码农K 2022-06-13 阅读 72

你可以用:
if (!str1.CompareNoCase(str2))
{
//相等
}
else
{
//不相等
}


举报

相关推荐

0 条评论