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

  • SEARCH
  • Home
  • 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 585613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:01:16+00:00 2026-05-13T15:01:16+00:00

In C#, how do I specify OR: if(this OR that) {do the other thing}

  • 0

In C#, how do I specify OR:

if(this OR that) {do the other thing}

I couldn’t find it in the help.

Update:

My code is:

if (title == "User greeting" || "User name") {do stuff}

and my error is:

Error 1 Operator ‘||’ cannot be applied to operands of type ‘bool’ and ‘string’ C:\Documents and Settings\Sky View Barns\My Documents\Visual Studio 2005\Projects\FOL Ministry\FOL Ministry\Downloader.cs 63 21 FOL Ministry

  • 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. Editorial Team
    Editorial Team
    2026-05-13T15:01:16+00:00Added an answer on May 13, 2026 at 3:01 pm

    || is the conditional OR operator in C#

    You probably had a hard time finding it because it’s difficult to search for something whose name you don’t know. Next time try doing a Google search for “C# Operators” and look at the logical operators.

    Here is a list of C# operators.

    My code is:

    if (title == "User greeting" || "User name") {do stuff};
    

    and my error is:

    Error 1 Operator ‘||’ cannot be
    applied to operands of type ‘bool’ and
    ‘string’ C:\Documents and Settings\Sky
    View Barns\My Documents\Visual Studio
    2005\Projects\FOL Ministry\FOL
    Ministry\Downloader.cs 63 21 FOL
    Ministry

    You need to do this instead:

    if (title == "User greeting" || title == "User name") {do stuff};
    

    The OR operator evaluates the expressions on both sides the same way. In your example, you are operating on the expression title == "User greeting" (a bool) and the expression "User name" (a string). These can’t be combined directly without a cast or conversion, which is why you’re getting the error.

    In addition, it is worth noting that the || operator uses “short-circuit evaluation”. This means that if the first expression evaluates to true, the second expression is not evaluated because it doesn’t have to be – the end result will always be true. Sometimes you can take advantage of this during optimization.

    One last quick note – I often write my conditionals with nested parentheses like this:

    if ((title == "User greeting") || (title == "User name")) {do stuff};
    

    This way I can control precedence and don’t have to worry about the order of operations. It’s probably overkill here, but it’s especially useful when the logic gets complicated.

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I would implement it with an associative container myself, however… May 14, 2026 at 12:12 am
  • Editorial Team
    Editorial Team added an answer RETS is not really much of a standard. It's more… May 14, 2026 at 12:12 am
  • Editorial Team
    Editorial Team added an answer The basic idea is to listen to scroll events, and… May 14, 2026 at 12:12 am

Related Questions

This might be a duplicate question as I have found a few that are
How do I create the default for a generic in VB? in C# I
I'm using WinSNMP in c++ to send snmp traps. For backwards compatibility I’m required
Can't exactly find a way on how to do the following in C/C++. Input
i have the following module and i would like to test connection. how do

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.