日期:2014-05-18  浏览次数:20389 次

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> …