Creating a Hash Table

suggest change

Example of creating an empty HashTable:

$hashTable = @{}

Example of creating a HashTable with data:

$hashTable = @{
    Name1 = 'Value'
    Name2 = 'Value'
    Name3 = 'Value3'
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents