Array property

  • Thread starter Thread starter André Almeida Maldonado
  • Start date Start date
A

André Almeida Maldonado

Hy guys...

I'm creating a class (class.vb), and need to create a property that will be
an array...

How can I do it????


thank's
 
Hi André,

An array is an array of some data type, so, for example, if it is an array
of strings, you can use:

Public String() MyStrings

If it's an array of integers, you would use something like:

Public Integer() MyIntegers

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top