正确写法1
bool bTemplatecontent2 = strtemplateContentInDB.Equals(strTemplateContentInDesignPanel, StringComparison.Ordinal); bTemplatecontent2 = true;
正确写法2
bool bEqual = String.Equals(strtemplateContentInDB, strTemplateContentInDesignPanel, StringComparison.Ordinal);
bEqual = true;
相关文章
- 12-01翻转字符串里的单词
- 12-01[python] 字符串与列表、字典的转换
- 12-01SAP字符串处理
- 12-01如何获取distutils用于构建的arch字符串?
- 12-01高阶函数复习:利用reduce和map把字符串转为数字
- 12-01JS 字符串 作为变量名
- 12-01165.比较版本号
- 12-01165. 比较版本号
- 12-012018年ETL工具比较
- 12-01将逗号分隔 的字符串转化成List