I need to copy an array to a linked list OR transform the array in a linked list.
How this can be done in .NET (C# or VB)?
Depending on what version we're taking about here, you can :
LinkedList<YourObjectType> ListOfObjects=new LinkedList<YourObjectType>(YourObjectArray);