qshinoの日記

Powershell関係と徒然なこと

型演算子 -is -isnot

powershell演算子

 

"123" -is [system.string]

-> True

 

@() -is [object[]]

-> True

 

@() -is [Array]

-> ???

 

 下記参照

http://blog.livedoor.jp/akf0/archives/51323690.html