I have a class
public ref class idnamepair{
int iId;
String^ strName;
};
I am using objects of this class in ArrayList which is being returned from the web service.
In my core class, I am querying the database to fetch the values. So, I think that It won't be a good idea to first query for the no. of rows, allocate array and again query for values.
So, I want to stick to dynamic array here. Any solution?
2007-03-04
21:20:55
·
1 answers
·
asked by
hope_of_d_world
3
in
Computers & Internet
➔ Programming & Design