- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
IsNullOrWhiteSpace() Method in C#
This method returns true if the entered string has only whitespace characters or is null.
Let say you checked for null value −
bool val1 = string.IsNullOrWhiteSpace(null);
The above returns True, since the string is “null”. In the same way, check it for whitespace character.
Here is the entire example that checks for null and whitespace.
Example
using System; using System.IO; public class Demo { public static void Main() { bool val1 = string.IsNullOrWhiteSpace(null); bool val2 = string.IsNullOrWhiteSpace(" "); bool val3 = string.IsNullOrWhiteSpace("5"); Console.WriteLine(val1); Console.WriteLine(val2); Console.WriteLine(val3); } }
Output
True True False
Advertisements