c#中list使用示例

    protected void Page_Load(object sender, EventArgs e)
    {
        List<string> studentNames = new List<string>();
        studentNames.Add("John");
        studentNames.Add("Mary");
        studentNames.Add("Rose");

        //显示各元素
        foreach (string item in studentNames)
        {
            Response.Write(item);
            Response.Write("<br/>");
        }
        Response.Write("<br/><br/>");

        //List转换成符号分隔字符串
        string studentAllName = string.Join(",", studentNames.ToArray());
        Response.Write(studentAllName);
        Response.Write("<br/><br/>");

        List<decimal> studentScore = new List<decimal>();
        studentScore.Add(100);
        studentScore.Add(98);
        studentScore.Add(59);
        //排序
        studentScore.Sort();
        //反转排序
        studentScore.Reverse();
        //显示各元素
        foreach (decimal score in studentScore)
        {
            Response.Write(score);
            Response.Write("<br/>");
        }
        //总计SUM
        Response.Write("总分" + studentScore.Sum());
        Response.Write("<br/>");
        //List中是否存在
        Response.Write(studentScore.Exists(MatchPRE));
        Response.Write("<br/><br/>");

        //List转换成JSon
        List<Student> list = new List<Student>();
        for (int i = 0; i < 5; i++)
        {
            Student a = new Student();
            a.Name = "张三" + i;
            a.Age = i;
            a.Sex = "男";
            list.Add(a);
        }
       string  json = new System.Web.Script.Serialization.JavaScriptSerializer().Serialize(list);
       Response.Write(json);
       Response.Write("<br/><br/>");

    }

    private static bool MatchPRE(decimal p)//条件匹配函数,list1中每个元素都会传入P中                                                                           //匹配后函数返回
    {
        if (p == 100)//此句为匹配条件,如果匹配,返回,你可以随意更改成你想要的值
            return true;
        else
        {
            return false;
        }
    }

    public struct Student
    {
        public string Name;
        public int Age;
        public string Sex;
    }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

smartsmile2012

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值