|
-
Mar 13th, 2007, 04:12 AM
#8
Re: Query on ArrayList - How to access
List<string> or List<List<string>>. However, you can't have different types. What you are doing is a bad practice. If your goal is to create some sort of tree structure, make a class to represent each node, which can contain children. Otherwise, if you just want a fixed-depth list of lists of strings, use List<List<string>>.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|