On Aug 28, 4:20 pm, Juan Puebla <JuanPue...@discussions.microsoft.com>
wrote:
> Hi,
>
[quoted text clipped - 3 lines]
>
> Thanks
Assuming T is a value that can be serialized and returned from the web
service, I would recommend that you return T[]. Use Generics List to
turn the value into a list and then return the values as an array.
T[] GetValues()
{
return new List<T>( .. IEnumerable<T> ).ToArray();
}
Ron