February 2019
Intermediate to advanced
626 pages
15h 51m
English
A dictionary must declare a type for the key and value when it is created. A dictionary that uses a string for the key and an IP address for the value may be created using either of the following examples:
$dictionary = New-Object System.Collections.Generic.Dictionary"[String,IPAddress]" $dictionary = New-Object "System.Collections.Generic.Dictionary[String,IPAddress]"
Read now
Unlock full access