- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- バックアップ を表示
- PowerShell/文法/型 へ行く。
- 1 (2012-05-01 (火) 17:32:54)
- 2 (2012-05-01 (火) 17:39:15)
- 3 (2013-07-19 (金) 02:31:48)
* 型 [#w431f437] ** タイプキャスト [#g451d4b7] [String]や[Int][Double]等でタイプキャストする。 PS C:\Users\taro> 2 * 3 6 PS C:\Users\taro> [String] 2 * 3 222 *** ToString() [#w1e3831a] PS C:\Users\taro> $i = 10 PS C:\Users\taro> $i.ToString(); 10 ** 型を調べる [#z339ff10] *** GetType() [#red8ac48] PS C:\Users\taro> $i.GetType() IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True Int32 System.ValueType