摘要: 委托:将函数作为参数传递 例如:操作将一个字符串数组转化为一下大写,小写,转变和打印,普通方法这么写 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System. 阅读全文
posted @ 2017-04-18 18:04 逍遥小天狼 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 说明:把xml中的数据放入到数据源list中然后显示到gridview中,参考上一节内容 1 UI页面 2创建student类 public class Student { public int ID { get; set; } public string Name { get; set; } pu 阅读全文
posted @ 2017-04-18 14:30 逍遥小天狼 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 说明:通过xml完成用户登录信息的判断 1 搭建UI页面 2 新建一个student类,类中包含以上属性 public class Student { public int ID { get; set; } public string Name { get; set; } public int Ag 阅读全文
posted @ 2017-04-18 11:58 逍遥小天狼 阅读(210) 评论(0) 推荐(0) 编辑