1 2 3 4 5 6 7 |
PS C:> $a = $null PS C:> if($a -eq $null){write-host "null"}else{write-host "not null"} null PS C:> $a = "a" PS C:> if($a -eq $null){write-host "null"}else{write-host "not null"} not null |
1 2 3 4 5 6 7 |
PS C:> $a = $null PS C:> if($a -eq $null){write-host "null"}else{write-host "not null"} null PS C:> $a = "a" PS C:> if($a -eq $null){write-host "null"}else{write-host "not null"} not null |