using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string s = string.Empty;
if (s == "")
Console.WriteLine("string empty");
if (s.Length == 0)
Console.WriteLine("string empty");
}
}
}
/*
run:
string empty
string empty
*/