This forum has migrated to
Microsoft Q&A
.
Visit
Microsoft Q&A
to post new questions.
Learn More
ProfileText
Sign in
Gallery
MSDN Library
Forums
Get started for free
Ask a question
Quick access
Forums home
Browse forums users
FAQ
Search related threads
Remove From My Forums
Answered by:
? Queue.Dequeue to a 2d array ? (1D to 2D Array)
Archived Forums 421-440
>
Visual Basic
Question
0
Sign in to vote
Is it possible to DeQueue
to a
2 dimensional array?
Example:
for x = 0 to numberOfQueues
Array(x,*) = Queue(x).Dequeue
next x
how do i wildcard the second dimension?
since i cannot loop thru the Q
i have to DeQueue..
Thanks.
Wednesday, June 7, 2006 7:41 PM
Answers
0
Sign in to vote
Instead of a 2d array you may want to look at jagged arrays (i.e. an array of arrays)
Wednesday, June 7, 2006 8:26 PM