Jaka jest różnica między zmiennymi $a
i $b
?GetType używany w PowerShell, różnica między zmiennymi
$a = (Get-Date).DayOfWeek
$b = Get-Date | Select-Object DayOfWeek
Próbowałem sprawdzić
$a.GetType
$b.GetType
MemberType : Method
OverloadDefinitions : {type GetType()}
TypeNameOfValue : System.Management.Automation.PSMethod
Value : type GetType()
Name : GetType
IsInstance : True
MemberType : Method
OverloadDefinitions : {type GetType()}
TypeNameOfValue : System.Management.Automation.PSMethod
Value : type GetType()
Name : GetType
IsInstance : True
Ale wydaje się, że nie ma różnicy, choć wyjście z tych zmiennych wygląda inaczej.