PowerShell で配列を作成し、それを単一の文字列に結合しようとしています。これは私のコードです:
$solutionRoot = "c:\temp"
$libraryPaths = @(
$solutionRoot + "\a",
$solutionRoot + "\b"
)
$joined = ($libraryPaths -join ",")
$joined
$joined2 = [string]::Join(",", $libraryPaths)
$joined2
ただし、出力は次のとおりです。
c:\temp\a c:\temp\b
c:\temp\a c:\temp\b
私のパスの間にセパレーターはありません(望ましい出力はですc:\temp\a,c:\temp\b
)。
私は何を間違っていますか?