22
1
using System;
2
3
namespace StringIsNullOrWhiteSpace
4
{
5
public class Program
6
{
7
public static void Main(string[] args)
8
{
9
string value1 = "Merhaba Dünya";
10
string value2 = "";
11
string value3 = " ";
12
string value4 = null;
13
14
Console.WriteLine(string.IsNullOrWhiteSpace(value1));
15
Console.WriteLine(string.IsNullOrWhiteSpace(value2));
16
Console.WriteLine(string.IsNullOrWhiteSpace(value3));
17
Console.WriteLine(string.IsNullOrWhiteSpace(value4));
18
19
Console.ReadLine();
20
}
21
}
22
}
Cached Result
True