タイプキャスト

[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

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS