PowerShell で変数型の最大値と最小値を求める

2020/04/18

方法

# 最小値
[型名]::Minvalue

# 最大値
[型名]::MaxValue

例文

# int 型の最小値
[int]::Minvalue

# int 型の最大値
[int]::MaxValue