G
Guest
Is there a high performance way in .Net to dynamically build single dimension
arrays when the number of elements in the array is unknown until after the
array is built? (i.e. I only need the array to grow, I don't need to remove
elements)
I noticed that Dim myVar As List(of X) gets converted to Dim myVar() As X
when returned from a web service. I'd like to build a single code base that
supports either using web services (Tiers) or tightly linked assemblies
(Layers). It would appear for that to work I'll need to use Arrays instead
of the new generics.
Thanks,
Larry
arrays when the number of elements in the array is unknown until after the
array is built? (i.e. I only need the array to grow, I don't need to remove
elements)
I noticed that Dim myVar As List(of X) gets converted to Dim myVar() As X
when returned from a web service. I'd like to build a single code base that
supports either using web services (Tiers) or tightly linked assemblies
(Layers). It would appear for that to work I'll need to use Arrays instead
of the new generics.
Thanks,
Larry