compare two strings in c#
string s1 = "string";
string s2 = "string";
if (s1 == s2)
{
doThis();
}
compare two strings in c#
string s1 = "string";
string s2 = "string";
if (s1 == s2)
{
doThis();
}
c# identical strings not equal
/*
Reflection can use characters that look like other characters, but are actually different!
Reflection boxes the values twice into new objects and == will compare by reference.
Try using object.Equals(currentValue, newValue) instead or convert the objects to strings first.
*/
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us