how to create two dimentional dynamic array in vs.net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ict027
    New Member
    • Dec 2008
    • 1

    how to create two dimentional dynamic array in vs.net

    i wanted to create a two dimensional dynamic array in vs.net . but it gives errors,

    this is the syntax i tried;

    Dim arrDen(,) As Integer(numOfEm p, nDen)

    i hope your suggestions to create two dimensional dynamic array in vs.net.
    thanks
  • nukefusion
    Recognized Expert New Member
    • Mar 2008
    • 221

    #2
    Try this instead:

    Code:
    Dim arrDen(numOfEmp, nDen) As Integer
    There is also some useful information on VB arrays on the MSDN website here

    Comment

    Working...