读书人

Listlt;Listlt;stringgt;gt; 如何取出里面的st

发布时间: 2012-01-10 21:26:51 作者: rapoo

List<List<string>> 怎么取出里面的string型的值?

List<List<string>> 怎么取出里面的string型的值?

急用谢谢

[解决办法]

C# code
using System;using System.Collections.Generic;namespace ConsoleApplication11{    class Program    {               public static void Main()        {            List<List<string>> l = new List<List<string>>();            List<string> ll = new List<string>();            ll.Add("aa");            ll.Add("bb");            l.Add(ll);            foreach (List<string> lll in l)            {                foreach (string str in lll)                {                    Console.WriteLine(str);                }            }            Console.Read();        }             }}
[解决办法]
up
[解决办法]
实际就是2维数组
[解决办法]
C# code
using System;using System.Collections.Generic;namespace ConsoleApplication11{    class Program    {               public static void Main()        {            List<List<string>> l = new List<List<string>>();            List<string> ll = new List<string>();            ll.Add("aa");            ll.Add("bb");            l.Add(ll);            foreach (List<string> lll in l)            {                foreach (string str in lll)                {                    Console.WriteLine(str);                }            }            Console.Read();        }             }}
[解决办法]
探讨
C# codeusing System;
using System.Collections.Generic;
namespace ConsoleApplication11
{
class Program
{

public static void Main()
{
List<List<string>> l = new List<List<string>>();
List<string> ll = new List<string>();
ll.Add("aa");
ll.Add("bb");
l.Add(ll);
foreach (List<string> …

读书人网 >asp.net

热点推荐