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.

posted @ mercoledì 8 febbraio 2006 00:42

Print

Comments on this entry:

# re: String.IsNullOrEmpty

Left by Michele Bernardi at 08/02/2006 02:12
Gravatar
Beato VB:
If checkMe <> String.Empty Then
Comments have been closed on this topic.