Array Alternative

  • Thread starter Thread starter Paul Cheetham
  • Start date Start date
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
 
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
 
declaring the array with the result should work in my opinion

pseudo code :::

Dim shorts() As Short = Returningdata

regards

Michel Posseth [MCP]
 
Back
Top