Q. For two strings s1 and s2 to be equal, which is the correct way to find if the contents of two strings are equal?
β
Correct Answer: (B)
int c; c = s1.CompareTo(s2);
You must be Logged in to update hint/solution