Hi,
I have a string (str1) which contain a special symbol (you can see attached). I want to check if this symbol exists, so I have declared this special symbol: string str = char.ConvertFromUtf32(135); and did the following:
if (str1.Contains (str))
{
// do some stuff here...
}
It doesn't enter the if although it the symbol exists. how come?