本文实例讲述了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; }
更多关于C#相关内容感兴趣的读者可查看本站专题:《C#程序设计之线程使用技巧总结》、《C#操作Excel技巧总结》、《C#中XML文件操作技巧汇总》、《C#常见控件用法教程》、《WinForm控件用法总结》、《C#数据结构与算法教程》、《C#数组操作技巧总结》及《C#面向对象程序设计入门教程》
希望本文所述对大家C#程序设计有所帮助。
本文向大家介绍C# List .IndexOf()方法使用示例,包括了C# List .IndexOf()方法使用示例的使用技巧和注意事项,需要的朋友参考一下 C#List <T>.IndexOf()方法 List<T>.IndexOf()方法用于获取列表中元素首次出现的索引。 语法: 参数: item是类型T的元素,如果找到item,则将返回其第一个匹配项。 start_index是您要在列表中
本文向大家介绍C# List .LastIndexOf()方法及使用示例,包括了C# List .LastIndexOf()方法及使用示例的使用技巧和注意事项,需要的朋友参考一下 C#List <T>.LastIndexOf()方法 列表<T>。LastIndexOf()方法用于获取列表中元素最后一次出现的索引。 语法: 参数: item是类型T的元素,如果找到item,则将返回其第一个匹配项。
本文向大家介绍PHP中list()函数用法实例简析,包括了PHP中list()函数用法实例简析的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了PHP中list()函数用法。分享给大家供大家参考,具体如下: PHP中的list() 函数用于在一次操作中给一组变量赋值。 注意:这里的数组变量只能为数字索引的数组,且假定数字索引从 0 开始。 list()函数定义如下: list(var1,va
本文向大家介绍C#中FormsAuthentication用法实例,包括了C#中FormsAuthentication用法实例的使用技巧和注意事项,需要的朋友参考一下
本文向大家介绍PHP中list方法用法示例,包括了PHP中list方法用法示例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了PHP中list方法用法。分享给大家供大家参考,具体如下: 输出: 改变一下 输出: 再变一下 输出: 再变一下,举一反三学习法 输出: 更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP数组(Array)操作技巧大全》、《php排序算法总结》、《php字符
本文向大家介绍C++中stringstream的用法和实例,包括了C++中stringstream的用法和实例的使用技巧和注意事项,需要的朋友参考一下 之前在leetcode中进行string和int的转化时使用过istringstream,现在大致总结一下用法和测试用例。 介绍:C++引入了ostringstream、istringstream、stringstream这三个类,要使用他们创建对