using System;
public class Program
{
static void Main(string[] args)
{
string s = "";
if (s == "") {
Console.WriteLine("empty 1");
}
if (s.Equals("")) {
Console.WriteLine("empty 2");
}
if (string.Equals(s, "")) {
Console.WriteLine("empty 3");
}
if (s.Length == 0) {
Console.WriteLine("empty 4");
}
if (string.IsNullOrEmpty(s)) {
Console.WriteLine("empty 5");
}
}
}
/*
run:
empty 1
empty 2
empty 3
empty 4
empty 5
*/