C
Cor Ligthert [MVP]
Matt,
You mean something as this?
\\\\
Dim a As New ArrayList
Dim b As String = ""
Dim c As Integer = 0
a.Add(b)
a.Add(c)
For Each obj As Object In a
Dim d As Type = obj.GetType
Debug.Write(d.ToString & vbCrLf)
Next
///
I hope this helps,
Cor
You mean something as this?
\\\\
Dim a As New ArrayList
Dim b As String = ""
Dim c As Integer = 0
a.Add(b)
a.Add(c)
For Each obj As Object In a
Dim d As Type = obj.GetType
Debug.Write(d.ToString & vbCrLf)
Next
///
I hope this helps,
Cor
