Search notes:
PowerShell: the automatic variables $true and $false
$true
and
$false
are constants that represent the two values of
System.Boolean
, which accordingly is the
type
of these values:
PS C:\> $true.GetType().FullName System.Boolean
See also
Other
automatic variables
Index