I want to assign all the array elements as the keys of hash table. For Example...
# arrays
$k=@(1,2,3)
$v=@("one","two","three")
# hashtable
$table=@{}
I want output like this:
$table={1="one",2="two",3="three"}
Is there any way to do it?