Set COM Object Call To Array
I'm trying to migrate some classic ASP functionality to ASP.NET.
In classic ASP, I'm populating a variable 'arrData' with a call to COM
object that returns an array and then I loop through the array with a
for/next loop:
arrData = LogicEngine.Execute(...)
for i=0 to ubound(arrData)
...
next
I need to create the same functionality in C#. I been successful in
calling the COM object. I now have to set the contents of that call
into an array.
Could someone please explain how I would do this?
Thank you,
Jeff
|