VB.NET Datastructure

Bloodstein

Newcomer
Joined
Jul 1, 2003
Messages
10
Hi,

I'd like to know what type of data structures are built into VB.NET 2003. I'd like one that's able to handle a sufficiently large number of data and that's pretty fast. I tried looking into the msdn but it doesn't seem to have the info i need. Is there, perhaps, a link that has all the data structures and their efficiency?

Thanks
 
.NET has all the basic data structures such as stacks, queues, hash tables, linked lists, etc. If none are suitable you can either use a database or create your own.
 
Back
Top