using System;
public class Program
{
public static void Main()
string str = null;
Console.WriteLine(str.IsNullOrEmpty());
}
public static class StringExtensions
public static bool IsNullOrEmpty(this string value)
return string.IsNullOrEmpty(value);