Hi,
Does anyone know if there is any C#'s class equivalent to java.utl.Vector ?
I think the System.Collecti ons.ArrayList is not the same:
In java:
for(int i = 0; i<myVector.leng th;i++)
{
mySecondVector = (Vector)MyVecto r[i]// <--- in C#, it does not allow me
to add an ArrayList inside an ArrayList, may be I miss something :(
for(int j = 0; j<mySecondVecto r.length;j++)
{
//do something
}
}
thanks
Egghead
Does anyone know if there is any C#'s class equivalent to java.utl.Vector ?
I think the System.Collecti ons.ArrayList is not the same:
In java:
for(int i = 0; i<myVector.leng th;i++)
{
mySecondVector = (Vector)MyVecto r[i]// <--- in C#, it does not allow me
to add an ArrayList inside an ArrayList, may be I miss something :(
for(int j = 0; j<mySecondVecto r.length;j++)
{
//do something
}
}
thanks
Egghead
Comment