About the LinkedList  
Author Message
GuoHouzuo





PostPosted: .NET Base Class Library, About the LinkedList Top

Hello everyone.I am a chinese boy,so I can't speak English very well.I'm sorry about this.I like the .net platform but I used the J2SE before.I like the LinkedList class in JDK very much.I have also used the .net framework 1.1,I couldn't find the LinkedList in it.So I don't know if the new .net framework 2.0 has the LinkedList

Thanks every one.



.NET Development23  
 
 
Johnson Cheung





PostPosted: .NET Base Class Library, About the LinkedList Top

Try this

Imports System.Collection

dim xList as new List

or

Imports System.Collection.Generic

dim xList as new List(of T) ' T is Type of something, eg, you can put it as String, Integer, or any class of structure.



 
 
GuoHouzuo





PostPosted: .NET Base Class Library, About the LinkedList Top

Thank you

but Could it use the memory dynistic 的....


 
 
Frank Boyne





PostPosted: .NET Base Class Library, About the LinkedList Top

I have also used the .net framework 1.1,I couldn't find the LinkedList in it.So I don't know if the new .net framework 2.0 has the LinkedList

The 2.0 Framework does have a LinkedList class. It is part of the System.Collections.Generics namespace so you create Linked lists of T where T is some suitable type. The documentation for the LinkedList class can be found here: http://msdn2.microsoft.com/en-us/library/he2s3bh7.aspx


 
 
GuoHouzuo





PostPosted: .NET Base Class Library, About the LinkedList Top

Thank you very much.The question has 解 .