I'm using WMI calls
to enumerate network adapters and display them. In the WMI docs, the
property IPAddress is an array value in
Win32_NetWorkAdapterConfiguration.
So why does the
following produce ARRAY(0xsomehexvalue) for its output?
my @ipaddrs =
$adapter->{'IPAddress'};
.
.
.
foreach my $ipaddr
(@ipaddrs) {
print
"$ipaddr\n";
}