型タイプキャスト[String]や[Int][Double]等でタイプキャストする。 PS C:\Users\taro> 2 * 3 6 PS C:\Users\taro> [String] 2 * 3 222 ToString()PS C:\Users\taro> $i = 10 PS C:\Users\taro> $i.ToString(); 10 型を調べるGetType()PS C:\Users\taro> $i.GetType() IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True Int32 System.ValueType パイプを通るオブジェクトの型を調べるPS> Get-Date | % gettype IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True DateTime System.ValueType PS> dir *.txt | % GetType | select -Unique IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True FileInfo System.IO.FileSystemInfo |
|