C#字符串比较

C#字符串比较
正确写法1
  bool bTemplatecontent2 = strtemplateContentInDB.Equals(strTemplateContentInDesignPanel, StringComparison.Ordinal);

 bTemplatecontent2 = true;
正确写法2
bool bEqual = String.Equals(strtemplateContentInDB, strTemplateContentInDesignPanel, StringComparison.Ordinal);
bEqual = true;
C#字符串比较

C#字符串比较

上一篇:反射


下一篇:List 集合的交集