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 751355
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:39:27+00:00 2026-05-14T14:39:27+00:00

I was wondering what was the most clean and understandable syntax for doing condition

  • 0

I was wondering what was the most clean and understandable syntax for doing condition checks on nullable bools.

Is the following good or bad coding style? Is there a way to express the condition better/more cleanly?

bool? nullableBool = true;
if (nullableBool ?? false) { ... }
else { ... }

especially the if (nullableBool ?? false) part. I don’t like the if (x.HasValue && x.Value) style …

(not sure whether the question has been asked before … couldn’t find something similar with the search)

  • 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-14T14:39:27+00:00Added an answer on May 14, 2026 at 2:39 pm

    I think a lot of people concentrate on the fact that this value is nullable, and don’t think about what they actually want 🙂

    bool? nullableBool = true;
    if (nullableBool == true) { ... } // true
    else { ... } // false or null
    

    Or if you want more options…

    bool? nullableBool = true;
    if (nullableBool == true) { ... } // true
    else if (nullableBool == false) { ... } // false
    else { ... } // null
    

    (nullableBool == true) will never return true if the bool? is null 😛

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

Sidebar

Related Questions

I was wondering, what is the most efficient way of doing the following? I'm
Basically, wondering what the best / most python-y way of doing this is; class
I was just wondering if most games on the iPhone are done in OpenGL
Learning Spring (3.1.0) and Hibernate (4.1.1). Just wondering what most developers do when handling
I am wondering about the most elegant solution of having a grid with each
Wondering what is the best or most popular database client tool. Similar to Microsoft's
I was wondering which DVCS is most conducive to experimentation i.e. branching, etc. I
I was wondering how you find it most easy to setup your controllers. Do
I'm just wondering which method is the most effective if I'm literally just wanting
I'm writing an api and was wondering what's the most pythonic way to do

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.