标题:求助 List<t> 的字符数组问题
取消只看楼主
meisbrother
Rank: 2
等 级:论坛游民
帖 子:100
专家分:29
注 册:2007-5-11
结帖率:84.62%
 问题点数:0 回复次数:1 
求助 List<t> 的字符数组问题
using System;
using System.Collections.Generic;

public class Example
{
    public static void Main()
    {
        List<string[]> a = new List<string[]>();
        string [] b=new string [2];
        
        b[0] = "adf";
        b[1] = "rtgh";
        a.Add(b);
        b[0] = "456ret";
        b[1] = "nt567";
        a.Add(b);
        b[0] = "dfh55t";
        b[1] = "nderthert";
        a.Add(b);

        Console.WriteLine(a.Count .ToString ());
        foreach (string[] s in a)
        {
            Console.WriteLine(a[0][0]);
            Console.WriteLine(a[0][1]);
        }
        


    }
}


得到的结果是三组相同的字符数组
怎样才能前两项不被覆盖啊
搜索更多相关主题的帖子: List 字符 
2008-11-17 13:02
meisbrother
Rank: 2
等 级:论坛游民
帖 子:100
专家分:29
注 册:2007-5-11
得分:0 
我明白了,谢谢指点
2008-11-17 15:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-244748-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.956383 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved