Information.IsNothing, méthode
Retourne une valeur Boolean indiquant si aucun objet n'est assigné à une expression.
Espace de noms : Microsoft.VisualBasic
Assembly : Microsoft.VisualBasic (dans microsoft.visualbasic.dll)
Syntaxe
'Déclaration
Public Shared Function IsNothing ( _
Expression As Object _
) As Boolean
'Utilisation
Dim Expression As Object
Dim returnValue As Boolean
returnValue = Information.IsNothing(Expression)
public static bool IsNothing (
Object Expression
)
public:
static bool IsNothing (
Object^ Expression
)
public static boolean IsNothing (
Object Expression
)
public static function IsNothing (
Expression : Object
) : boolean
Paramètres
- Expression
Obligatoire. Expression Object.
Valeur de retour
Retourne une valeur Boolean indiquant si aucun objet n'est assigné à une expression.
Notes
Pour plus d'informations, consultez la rubrique Visual Basic IsNothing, fonction.
IsNothing retourne True si l'expression représente une variable Object à laquelle aucun objet n'est actuellement assigné ; sinon, elle retourne False.
IsNothing est prévu pour utiliser les types référence. Un type valeur ne peut pas contenir la valeur Nothing et rétablit sa valeur par défaut si vous lui assignez Nothing. Si vous fournissez un type valeur dans Expression, IsNothing retourne toujours False.
Exemple
Cet exemple utilise la fonction IsNothing pour déterminer si une variable objet est associée à une instance d'objet.
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)
Plates-formes
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile pour Pocket PC, Windows Mobile pour Smartphone, Windows Server 2003, Windows XP Édition Media Center, Windows XP Professionnel Édition x64, Windows XP SP2, Windows XP Starter Edition
Le .NET Framework ne prend pas en charge toutes les versions de chaque plate-forme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise.
Informations de version
.NET Framework
Prise en charge dans : 2.0, 1.1, 1.0
.NET Compact Framework
Prise en charge dans : 2.0, 1.0
Voir aussi
Référence
Information, classe
Membres Information
Microsoft.VisualBasic, espace de noms
Autres ressources
IsNothing, fonction
IsArray, fonction (Visual Basic)
IsDate, fonction (Visual Basic)
IsDBNull, fonction
IsError, fonction
IsNumeric, fonction (Visual Basic)
IsReference, fonction
Object, type de données
TypeName, fonction (Visual Basic)
Types valeur et types référence