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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:46:24+00:00 2026-05-24T11:46:24+00:00

Is use of string.IsNullOrEmpty(string) when checking a string considered as bad practice when there

  • 0

Is use of string.IsNullOrEmpty(string) when checking a string considered as bad practice when there is string.IsNullOrWhiteSpace(string) in .NET 4.0 and above?

  • 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-24T11:46:25+00:00Added an answer on May 24, 2026 at 11:46 am

    The best practice is selecting the most appropriate one.

    .Net Framework 4.0 Beta 2 has a new IsNullOrWhiteSpace() method for
    strings which generalizes the IsNullOrEmpty() method to also include other white
    space besides empty string.

    The term “white space” includes all characters that are not visible on
    screen. For example, space, line break, tab and empty string are white
    space characters*
    .

    Reference : Here

    For performance, IsNullOrWhiteSpace is not ideal but is
    good. The method calls will result in a small performance penalty.
    Further, the IsWhiteSpace method itself has some indirections that can
    be removed if you are not using Unicode data. As always, premature
    optimization may be evil, but it is also fun.

    Reference : Here

    Check the source code (Reference Source .NET Framework 4.6.2)

    IsNullorEmpty

    [Pure]
    public static bool IsNullOrEmpty(String value) {
        return (value == null || value.Length == 0);
    }
    

    IsNullOrWhiteSpace

    [Pure]
    public static bool IsNullOrWhiteSpace(String value) {
        if (value == null) return true;
    
        for(int i = 0; i < value.Length; i++) {
            if(!Char.IsWhiteSpace(value[i])) return false;
        }
    
        return true;
    }
    

    Examples

    string nullString = null;
    string emptyString = "";
    string whitespaceString = "    ";
    string nonEmptyString = "abc123";
    
    bool result;
    
    result = String.IsNullOrEmpty(nullString);            // true
    result = String.IsNullOrEmpty(emptyString);           // true
    result = String.IsNullOrEmpty(whitespaceString);      // false
    result = String.IsNullOrEmpty(nonEmptyString);        // false
    
    result = String.IsNullOrWhiteSpace(nullString);       // true
    result = String.IsNullOrWhiteSpace(emptyString);      // true
    result = String.IsNullOrWhiteSpace(whitespaceString); // true
    result = String.IsNullOrWhiteSpace(nonEmptyString);   // false
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any free java library which I can use to convert string in
If you have to use String.Replace() to replace test 50 times, you essentially have
It seems that the choice to use string parsing vs. regular expressions comes up
I'm looking for a portable and easy-to-use string library for C/C++, which helps me
Helo! Is this possible to use string value of one node which tells what
I want to use a string that I have been using in one aspx.cs
I've read on articles and books that the use of String s = new
Traditionally, when we use SQL string to done some work, we have to close
Possible Duplicate: Escape string for use in Javascript regex I have a msg like
Does anyone know how I can get a format string to use bankers rounding

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.