J
Jeff Johnson
Hi,
I've begun converting an ASP site over to .NET and I'm a novice at both the
new platform as well as C#.
I have a COM+ object that returns a string array when it is called. The
size of the array can vary depending on the parameters passed.
What I need to do is loop through the returned array and if applicable write
the array element to the screen.
I'd like to know if an ArrayList is the best way to go or is there something
else in C# I should use. I'm not adding, deleting or appending anything to
the returned array.
Secondly, what would be the syntax for this?
What I have so far is the declaration:
ComLogicEngine.ComPlusLogic oConfig = new
ComLogicEngine.ComPlusLogic();
And the call to the COM+ object:
oConfig.Execute("blah", "blah", "blah");
Thank you for your help,
JJ
I've begun converting an ASP site over to .NET and I'm a novice at both the
new platform as well as C#.
I have a COM+ object that returns a string array when it is called. The
size of the array can vary depending on the parameters passed.
What I need to do is loop through the returned array and if applicable write
the array element to the screen.
I'd like to know if an ArrayList is the best way to go or is there something
else in C# I should use. I'm not adding, deleting or appending anything to
the returned array.
Secondly, what would be the syntax for this?
What I have so far is the declaration:
ComLogicEngine.ComPlusLogic oConfig = new
ComLogicEngine.ComPlusLogic();
And the call to the COM+ object:
oConfig.Execute("blah", "blah", "blah");
Thank you for your help,
JJ