Information.IsNothing(Object) Yöntem
Tanım
BooleanBir ifadenin kendisine atanmış bir nesne içerip içermediğini gösteren bir değer döndürür.Returns a Boolean value indicating whether an expression has no object assigned to it.
public:
static bool IsNothing(System::Object ^ Expression);
public static bool IsNothing (object? Expression);
public static bool IsNothing (object Expression);
static member IsNothing : obj -> bool
Public Function IsNothing (Expression As Object) As Boolean
Parametreler
- Expression
- Object
Gereklidir.Required. Object ifadesini.Object expression.
Döndürülenler
BooleanBir ifadenin kendisine atanmış bir nesne içerip içermediğini gösteren bir değer döndürür.Returns a Boolean value indicating whether an expression has no object assigned to it.
Örnekler
Aşağıdaki örnek, IsNothing bir nesne değişkeninin herhangi bir nesne örneğiyle ilişkili olup olmadığını anlamak için işlevini kullanır.The following example uses the IsNothing function to determine if an object variable is associated with any object instance.
Dim testVar As Object
' No instance has been assigned to variable testVar yet.
Dim testCheck As Boolean
' The following call returns True.
testCheck = IsNothing(testVar)
' Assign a string instance to variable testVar.
testVar = "ABCDEF"
' The following call returns False.
testCheck = IsNothing(testVar)
' Disassociate variable testVar from any instance.
testVar = Nothing
' The following call returns True.
testCheck = IsNothing(testVar)
Açıklamalar
IsNothing``Trueifade, şu anda kendisine atanmış nesne olmayan bir nesne değişkenini temsil ediyorsa döndürür; Aksi takdirde, döndürür False .IsNothing returns True if the expression represents an object variable that currently has no object assigned to it; otherwise, it returns False.
IsNothing Başvuru türlerinde çalışmak üzere tasarlanmıştır.IsNothing is intended to work on reference types. Değer türü Nothing değerini tutamaz ve buna atarsanız varsayılan değerine geri döner Nothing .A value type cannot hold a value of Nothing and reverts to its default value if you assign Nothing to it. İçinde bir değer türü sağlarsanız Expression , IsNothing her zaman ' i döndürür False .If you supply a value type in Expression, IsNothing always returns False.