Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 44955
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:44:00+00:00 2026-05-10T15:44:00+00:00

Comparing string in C# is pretty simple. In fact there are several ways to

  • 0

Comparing string in C# is pretty simple. In fact there are several ways to do it. I have listed some in the block below. What I am curious about are the differences between them and when one should be used over the others? Should one be avoided at all costs? Are there more I haven’t listed?

string testString = 'Test'; string anotherString = 'Another';  if (testString.CompareTo(anotherString) == 0) {} if (testString.Equals(anotherString)) {} if (testString == anotherString) {} 

(Note: I am looking for equality in this example, not less than or greater than but feel free to comment on that as well)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T15:44:00+00:00Added an answer on May 10, 2026 at 3:44 pm

    Here are the rules for how these functions work:

    stringValue.CompareTo(otherStringValue)

    1. null comes before a string
    2. it uses CultureInfo.CurrentCulture.CompareInfo.Compare, which means it will use a culture-dependent comparison. This might mean that ß will compare equal to SS in Germany, or similar

    stringValue.Equals(otherStringValue)

    1. null is not considered equal to anything
    2. unless you specify a StringComparison option, it will use what looks like a direct ordinal equality check, i.e. ß is not the same as SS, in any language or culture

    stringValue == otherStringValue

    1. Is not the same as stringValue.Equals().
    2. The == operator calls the static Equals(string a, string b) method (which in turn goes to an internal EqualsHelper to do the comparison.
    3. Calling .Equals() on a null string gets null reference exception, while on == does not.

    Object.ReferenceEquals(stringValue, otherStringValue)

    Just checks that references are the same, i.e. it isn’t just two strings with the same contents, you’re comparing a string object with itself.


    Note that with the options above that use method calls, there are overloads with more options to specify how to compare.

    My advice if you just want to check for equality is to make up your mind whether you want to use a culture-dependent comparison or not, and then use .CompareTo or .Equals, depending on the choice.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 64k
  • Answers 64k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Your problem is similar to that solved by a 'capture… May 11, 2026 at 10:52 am
  • added an answer There is a list of all the time zones in… May 11, 2026 at 10:52 am
  • added an answer The reason why this does not work is += when… May 11, 2026 at 10:52 am

Related Questions

Comparing string in C# is pretty simple. In fact there are several ways to
When comparing two strings in c# for equality, what is the difference between InvariantCulture
I am in the process of researching/comparing CXF and Spring-WS for web services? I
Take this non-compiling code for instance: public string GetPath(string basefolder, string[] extraFolders) { string
Comparing LinkedLists and Arrays while also comparing their differences with sorted and unsorted data
When comparing an HTTP GET to an HTTP POST, what are the differences from
I'm comparing between two techniques to create partitioned tables in SQL 2005. Use partitioned
Possible Duplicate: Reference: Comparing PHP's print and echo Is there any major and fundamental
I have trouble comparing 2 double in Excel VBA suppose that I have the
Are there techniques for comparing the same data stored in different schemas? The situation

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.