String.IsNullOrEmpty

Caspita che bella scoperta che ho fatto oggi ... nel .NET Framework 2.0 hanno aggiunto un metodo per il controllo delle stringhe null o Empty con un comando solo :

string checkMe;
if (!String.IsNullOrEmpty(checkMe))

che sostituisce il vecchio metodo usato in .NET 1.1 :

if (checkMe != null && checkMe.Length != 0)

chiaramente rimane da evitare il test delle stringhe vuote tramite il metodo Equals (checkMe == String.Empty) per ragioni di performance.