Please can someone help me. I have an arraylist which contains objects
how do i go about reading the data out of the objects in the arraylist,
code example below.. I really have no idea how to do this!!! The code
below just shows me it is a 'system.object[]' when displayed on the
screen but i want its contents. I know i can do objItem(0) but i don't
know how to get the upper bound or do i need to convert it to another
type!!
myArray = testing.flowLog ic()
For Each objItem In myArray
Response.Write( objItem.ToStrin g & "<BR>")
Next
how do i go about reading the data out of the objects in the arraylist,
code example below.. I really have no idea how to do this!!! The code
below just shows me it is a 'system.object[]' when displayed on the
screen but i want its contents. I know i can do objItem(0) but i don't
know how to get the upper bound or do i need to convert it to another
type!!
myArray = testing.flowLog ic()
For Each objItem In myArray
Response.Write( objItem.ToStrin g & "<BR>")
Next
Comment