Aracılığıyla paylaş


System.String.IsNullOrEmpty yöntemi

Bu makale, bu API'nin başvuru belgelerine ek açıklamalar sağlar.

IsNullOrEmpty, bir Stringnull veya değerinin String.Emptyolup olmadığını aynı anda test etmenizi sağlayan bir kolaylık yöntemidir. Aşağıdaki koda eşdeğerdir:

bool TestForNullOrEmpty(string s)
{
    bool result;
    result = s == null || s == string.Empty;
    return result;
}

string s1 = null;
string s2 = "";
Console.WriteLine(TestForNullOrEmpty(s1));
Console.WriteLine(TestForNullOrEmpty(s2));

// The example displays the following output:
//    True
//    True
result = s Is Nothing OrElse s = String.Empty
let testForNullOrEmpty (s: string): bool =
    s = null || s = String.Empty

let s1 = null
let s2 = ""

printfn "%b" (testForNullOrEmpty s1)
printfn "%b" (testForNullOrEmpty s2)

// The example displays the following output:
//    true
//    true

bir dizenin IsNullOrWhiteSpaceolup olmadığını, değerinin nullolup olmadığını veya yalnızca boşluk karakterlerinden mi oluştuğunu test etmek için String.Empty yöntemini kullanabilirsiniz.

Null dize nedir?

Bir dizeye değer atanmadığında (C++ ve Visual Basic'te) null olur veya açıkça nulldeğeri atanmışsa nullolur. bileşik biçimlendirme özelliği, bir null dizeyi sorunsuz bir şekilde işleyebilir; ancak aşağıdaki örnekte gösterildiği gibi, üyelerinden birini çağırmayı denemek bir NullReferenceExceptionoluşturur.

  String s = null;

  Console.WriteLine($"The value of the string is '{s}'");

  try 
  {
      Console.WriteLine($"String length is {s.Length}");
  }
  catch (NullReferenceException e) 
  {
      Console.WriteLine(e.Message);
  }

  // The example displays the following output:
  //     The value of the string is ''
  //     Object reference not set to an instance of an object.
Module Example
   Public Sub Main()
      Dim s As String

      Console.WriteLine("The value of the string is '{0}'", s)

      Try 
         Console.WriteLine("String length is {0}", s.Length)
      Catch e As NullReferenceException
         Console.WriteLine(e.Message)
      End Try   
   End Sub
End Module
' The example displays the following output:
'     The value of the string is ''
'     Object reference not set to an instance of an object.
let (s: string) = null

printfn "The value of the string is '%s'" s

try
    printfn "String length is %d" s.Length
with
    | :? NullReferenceException as ex -> printfn "%s" ex.Message

// The example displays the following output:
//     The value of the string is ''
//     Object reference not set to an instance of an object.

Boş dize nedir?

Bir dize, açıkça boş bir dize ("") veya String.Emptyatandığında boş olur. Boş bir dizenin Length değeri 0'dır. Aşağıdaki örnek boş bir dize oluşturur ve değerini ve uzunluğunu görüntüler.

String s = "";
Console.WriteLine($"The length of '{s}' is {s.Length}.");

// The example displays the following output:
//       The length of '' is 0.
Dim s As String = ""
Console.WriteLine("The length of '{0}' is {1}.", s, s.Length)
' The example displays the following output:
'        The length of '' is 0.
let s = ""
printfn "The length of '%s' is %d." s s.Length

// The example displays the following output:
//       The length of '' is 0.