E
Egghead
Hi,
Does anyone know if there is any C#'s class equivalent to java.utl.Vector?
I think the System.Collections.ArrayList is not the same:
In java:
for(int i = 0; i<myVector.length;i++)
{
mySecondVector = (Vector)MyVector// <--- in C#, it does not allow me
to add an ArrayList inside an ArrayList, may be I miss something
for(int j = 0; j<mySecondVector.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.Collections.ArrayList is not the same:
In java:
for(int i = 0; i<myVector.length;i++)
{
mySecondVector = (Vector)MyVector// <--- in C#, it does not allow me
to add an ArrayList inside an ArrayList, may be I miss something

for(int j = 0; j<mySecondVector.length;j++)
{
//do something
}
}
thanks
Egghead