Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the VB.NET syntax for declaring the size of an array of objects at runtime?

To get an idea of what I mean, here is the code so far:

Private PipeServerThread As Thread()

Public Sub StartPipeServer(NumberOfThreads As Integer)
    ' ??? equivalent of C#
    ' ???   PipeServerThread = new Thread[numberOfThreads];
    ' ??? goes here
    For i = 0 To NumberOfThreads - 1
        PipeServerThread(i) = New Thread(New ThreadStart(AddressOf ListeningThread))
        PipeServerThread(i).Start()
    Next i
End Sub

I've tried several things but just end up conflating it with object creation syntax.

share|improve this question

2 Answers

up vote 4 down vote accepted
PipeServerThread = New Thread(numberOfThreads - 1) { }

Alternatively:

ReDim PipeServerThread(numberOfThreads - 1)

Remember that the value inside parenthesis is the upper bound of the array in VB.NET (unlike C# where it's array length).

share|improve this answer
Many thanks for that, just what I needed. – Robert Bjork Jun 22 '09 at 12:13
The "upper bound" of the array is the correct term for what you specify between the brackets, but yes, this is right. It is however slightly annoying that VB.NET and C# differ in this respect. (The C# way seems much more logical.) – Noldorin Jun 22 '09 at 15:07

This should be what you want:

ReDim PipeServerThread(numberOfThreads - 1)

You can't use the New keyword, since the VB.NET compiler interprets this as an attempt to create a new instance of the type Thread.

share|improve this answer
Yeah, my VB.NET is a bit rusty it seems. Updated the answer now. – Noldorin Jun 22 '09 at 12:15
Deleted my previous comment as it didn't make sense with the edit :) – Robert Bjork Jun 22 '09 at 12:16
@Noldorin: it's not equivalent to the C# statement mentioned. See my answer. – Mehrdad Afshari Jun 22 '09 at 12:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.