Assuming you do not need to differentiate between null and empty

If you want to check specifically for empty...
Code:
if (stringVar != String.Empty)
{
   //  It is NOT empty...however it might be Null.....
}