C# Programming - Strings - Discussion

Discussion Forum : Strings - General Questions (Q.No. 14)
14.
If s1 and s2 are references to two strings then which of the following are the correct ways to find whether the contents of the two strings are equal?
  1. if(s1 = s2)
  2. if(s1 == s2)
  3. int c;
    c = s1.CompareTo(s2);
  4. if( strcmp(s1, s2) )
  5. if (s1 is s2)
1, 2
2, 3
4, 5
3, 5
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Harshit Gupta said:   8 years ago
But == operator is for reference equality. It is not there for content equality. So how?

Post your comments here:

Your comments will be displayed after verification.