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

I believe that it's better to code to interfaces instead of implementations. In Java:
I have an Offer class (NSManagedObject subclass) that I want to use to handle
We have a fairly large code-base. The vast majority of the code is compiled
When I try to omit dots from method invocations, like in this example program:
The end goal is for the user to download a .csv file. Right now
I'm trying to do file uploads with ruby 1.8 and it seems like there
Say I have public class family { public person father; public person mother; public
I am just starting out in XNA and have a question about rotation. When
Suppose I have the following tables: CREATE TABLE Game ( GameID INT UNSIGNED NOT
I'd like to implement a method which allows me to access a property of

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.