I would like to get the list created on Web Service in my Windows Forms application. The point is, I would like to have the access to the full list and not to have to add every item separately to the new list.
I've searched the Internet and didn't find any useful information for my problem.
I'll be grateful for every help.
EDIT: I'm adding every item from the Web Service list to the new list like this:
foreach (var item in webServiceComarch.zwrocListedoAktualizatora())
{
ListazWebService.Add(item);
}