摘要:
一、Linq有两种语法:1、 方法语法2、 查询语法下面举个例子看看这两种方法的区别比如现在有一个学生类public class student{ public string username { get; set; } public int age { get; set; } public string sex { get; set; }}我们通过一个方法来添加很多同学public IList<student> GetStu(int n) { IList<student> stuList = new List<student>(); for (int i 阅读全文
摘要:
学习linq只是之前,有些知识需要了解一下,这些会在学习linq中用到,下面就来简单说说,大的理论就不必多说了,主要看例子1、初始化对象 当然了这个对象可以使类,也可以是集合 比如现在有一个类StudentView Code classStudent{publicstringname{get;set;}publicstringsex{get;set;}publicintage{get;set;}}一般初始化的时候,需要用到new调用构造函数,初始化并赋值View Code Studentstu=newStudent();stu.age="";stu.name="& 阅读全文