タイプキャスト

[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

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2018-07-28 (土) 21:41:54