Array Alternative

P

Paul Cheetham

Hi,

I am writing an application that reads data from a PLC in a
manufacturing plant.
I use a control to communicate with the PLC, that returns an array of
Short values.

I do not always know the length of the data block that will be returned,
and so cannot declare a suitable array. (As well as that, I believe
re-dimensioning an array in VB.Net is very inefficient)

Can anyone suggest a way of storing this data so it can then be manipulated?


I am using .Net 1.1 and VS 2003


Thankyou.

Paul Cheetham
 
C

Chris

Paul said:
Hi,

I am writing an application that reads data from a PLC in a
manufacturing plant.
I use a control to communicate with the PLC, that returns an array of
Short values.

I do not always know the length of the data block that will be returned,
and so cannot declare a suitable array. (As well as that, I believe
re-dimensioning an array in VB.Net is very inefficient)

Can anyone suggest a way of storing this data so it can then be
manipulated?


I am using .Net 1.1 and VS 2003


Thankyou.

Paul Cheetham


sounds like an arraylist is exactly what you need.
take a look at it. Also some of the collection classes may help.
Chris
 
M

m.posseth

declaring the array with the result should work in my opinion

pseudo code :::

Dim shorts() As Short = Returningdata

regards

Michel Posseth [MCP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top