Easy one: string/char comparison
I need to compare two character array elements to see if they have the same value, but using a text compare rather than a binary compare of the scan codes. I want to do what VB's Option Compare Text does rather than Option Compare Binary, which is what I am seeing as a result of this comparison:
Code:
if ((s[i]!=s[j]) || (s[i].Equals(s[j])))
For instance if the ith element contains the character P and the jth element contains p, then they must be equal and this if condition must return true.