Zexor
Well-known member
- Joined
- Nov 28, 2008
- Messages
- 520
- Programming Experience
- 3-5
Could the "abc" and "def" be directly enter into Q1 without making the tempArray?
VB.NET:
Dim Q1 As New Queue(Of String())(30)
Dim tempArray(1) As String
tempArray(0) = "abc"
tempArray(1) = "def"
Q1.Enqueue(tempArray)