I'm trying to create a JSON-serialized array. When that array contains only one item I get a string, not an array of strings (in JSON).
Multiple Items (works as expected):
PS C:> @("one", "two") | ConvertTo-JSON
[
"one",
"two"
]
Single Item Array (not as expected):
PS C:> @("one") | ConvertTo-JSON
"one"
Am I missing something?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…