#how to add list element to collection in ICC1 and ICC2

#lets create a list now

set nets2 "a b c"

#lets create a collection now

set nets [get_nets ]

#lets add nets from the list to the collection nets

foreach n $nets { append_to_collection nets $n }

#this is how you will add nets from list to collection