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

Related Questions

This is a new gmail labs feature that lets you specify an RSS feed
Is there some way when sending this message to specify that I rather have
I'm developing a API that uses lambda expressions to specify properties. I'm using this
I asked a similar question about this previously, but I did not specify that
I find myself having a lot of this in different methods in my code:
How to specify load rules in this case? Previously discussed in How do I
When I specify a height in the style for any element inside of this,
I have tried this but it does not work (even if I specify .wav
When using fluent configuration to specify fluent mappings like this: .Mappings(m => m.FluentMappings.AddFromAssembly(typeof(UserMapping).Assembly)) At
I don't need to specify the orientation in this case, I just need to

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.