PowerShell Arrays
How to create arrays
An empty array can be created by using @()
Example array:
$ExampleArray = @(
"C:\test",
"C:\test2"
)
references:
Subscribe to NordLetter
A weekly newsletter on living in Finland.
An empty array can be created by using @()
Example array:
$ExampleArray = @(
"C:\test",
"C:\test2"
)
references:
A weekly newsletter on living in Finland.