所有类别

  • 浅谈C#指针

    之前很少听说指针,也不知道是做什么的。今天看了下书,正好见到了指针,就我现在的理解来谈一谈。1.什么是指针。 指针就是栈里面指向值存储的位置,也就值地址。2.为什么要使用指正? 在调用windows api方法(windows api是什么,我前面的博客有写到一些操作windo…

    2019-11-21 148

  • List用法之Sort(), Find() , FindAll() ,Exists()应用

    1、person类public class Person{ /// <summary> /// 年龄 /// </summary> public int Age { get; set; } /// <summary> /// 名字 /// </summary> public string Name { get; set; } /// <summary> /// 性别…

    2019-11-21 146

  • c#中list.Find、 list.FindAll 、list.FindIndex用法

    protected void Page_Load(object sender, EventArgs e) { List<User> list = new List<User>(); list.Add(new User(1, "testOne")); list.Add(new User(2, "testTwo")); list.Add(new User(3, "te…

    2019-11-21 214

  • C#中List的Sort()、Find()、FindAll()、Exist()的使用方法

    C#中List的Sort()、Find()、FindAll()、Exist()的使用方法public class student{ public int Number { get; set; } public string Name { get; set; } public bool Sex { get; set; } public student(int _number, string _name, bool _sex) { …

    2019-11-21 146

  • C#中Find及Findindex用法

    Findindex及find中需要一个参数,可用一个Lambda表达式来表示。Findindex返回查找内容在列表中的位置,find返回参数相同类型的对象。注意,如果找不到会报错哦,所以最好加上try.示例如下:假设有一个list,里面有10组数据,每组数据我都放到一个class中。现在演示一下查…

    2019-11-20 233