I am trying to compare 2 strings but getting weird results. On some computers, the comparison works correctly and on others, it does not. The codes is written in Visual Studio 2010 using managed C++.I have checked the strings and they look identical. Any thoughts?
String^ str1 = "string1";
char[] chars = "string1";
String^ str2 = new String(chars);
if(String::Compare(str1,str2)==0)
return true;
else
return false;
String::Compareis culture-sensitive; if you want to use an invariant culture then use a different overload takingCultureInfo. – ildjarn Feb 2 at 0:35StringComparison::InvariantCultureis surely the easiest approach, but every overload comes with example code -- read the documentation. – ildjarn Feb 2 at 0:42String::Comparein the code you've shown). SSCCE – ildjarn Feb 2 at 0:47