public static void Main()
Console.WriteLine("Hello World");
if(string.IsNullOrEmpty(allSpaces))
Console.WriteLine("IsNullOrEmpty evaluation - {allSpaces} is empty");
Console.WriteLine("IsNullOrEmpty evaluation - {allSpaces} is not empty");
if(string.IsNullOrWhiteSpace(allSpaces))
Console.WriteLine("IsNullOrWhiteSpace evaluation - {allSpaces} is empty");
Console.WriteLine("IsNullOrWhiteSpace evaluation - {allSpaces} is not empty");