Table of Contents

Powershell - Array

About

Collection - Array in Powershell

Management

Init

$foo = "Nico","Gerard"

Join

$foo = "Nico","Gerard"
$foo -join ' '

To String

[string]$foo

Properties

length

$MY_ARRAY.length

Documentation / Reference