'VBSで配列の例
Dim singouArr(3)
singouArr(0) = "red"
singouArr(1) = "yellow"
singouArr(2) = "green"
#PowerShellで配列の例
$singouArr = @(1..3)
$singouArr[0] = "red"
$singouArr[1] = "yellow"
$singouArr[2] = "green"
Go to list of users who liked
More than 5 years have passed since last update.
'VBSで配列の例
Dim singouArr(3)
singouArr(0) = "red"
singouArr(1) = "yellow"
singouArr(2) = "green"
#PowerShellで配列の例
$singouArr = @(1..3)
$singouArr[0] = "red"
$singouArr[1] = "yellow"
$singouArr[2] = "green"
Register as a new user and use Qiita more conveniently
Go to list of users who liked