-
C# 泛型列表List用法示例
C# 泛型列表List用法示例,从给出的人员名单中,过滤人员名称中以"科"结束的序列,遍历查询结果。
private void Frm_Main_Load(object sender, EventArgs e)
{
List People = new List{//创建人员列表
new Person(1,"王*科"),
new Person(2,"王*科"),
new Person(3,"赵*东")};
var query = from p in People//过滤人员名称中以"科"结束的序列
where p.Name.EndsWith("科")
select new
{
人员ID = p.ID,
人员姓名 = p.Name
};
foreach (var item in query)//遍历查询结果
{
label1.Text += item + "
";
}
}
}
public class Person
{
public Person(int id, string name)
{
this.ID = id;
this.Name = name;
}
public int ID { get; set; }//人员ID
public string Name { get; set; }//人员姓名
}
- 2023-01-08 20:45:03下载
- 积分:1
-
用vb操作二进制文件,打开保存文件.含有vb源码.
用vb操作二进制文件,打开保存文件.含有vb源码.-Vb file with a binary operation, open the saved file. Containing the vb source code.
- 2022-01-26 00:09:14下载
- 积分:1
-
这是一个定轨程序,你可用它计算轨道的位置和速度
这是一个定轨程序,你可用它计算轨道的位置和速度-satellite orbits determination
- 2022-02-19 22:10:06下载
- 积分:1
-
thesis I used some of the pretreatment process, a lot of procedures are prepared...
我论文里用到的预处理的一些程序,很多程序都是我自己编写的,有用的可以一起讨论-thesis I used some of the pretreatment process, a lot of procedures are prepared by myself, can be useful to discuss
- 2022-11-23 16:25:03下载
- 积分:1
-
等级考试辅助软件
等级考试辅助软件-grading examinations assistive software
- 2022-08-24 23:50:15下载
- 积分:1
-
功能:快进,播放,暂停,后退,调节声音大小,添加播放文件,...
功能:快进,播放,暂停,后退,调节声音大小,添加播放文件,-Features: fast forward, play, pause, rewind, adjust the size of the sound, add play the file,
- 2022-07-04 21:47:47下载
- 积分:1
-
VC++增强型对话框 加入图片显示
VC++增强型“打开文件”和“保存文件”对话框 加入图片显示,程序分别生成了几个常用的dialog功能,在这些dialog中增加了图片,还有TAB选项卡还有预览功能,大大提升了对话框的实用性,如演示截图所示的打开文件对话框,上面会显示一张图片,而且还添加了TAB功能,可在打开文件的时候显示最新的文件。
- 2022-07-14 12:33:51下载
- 积分:1
-
判断一棵二叉树是否为二叉搜索树的算法
判断一棵二叉树是否为二叉搜索树的算法-judge whether a binary tree search for the binary tree algorithm
- 2022-07-22 01:02:33下载
- 积分:1
-
Flash 图片旋转360度源文件
Flash 图片旋转360度源文件,旋转过程中会感受鼠标的变化,改变旋转的速度,围绕成有一定空间感的图片旋转,整圈旋转效果,附有完整版的Flash源码文件,作Flash图片动画的可参考一下这个范例。
- 2022-04-13 16:06:52下载
- 积分:1
-
九宫棋游戏源代码,Visual Basic,
九宫棋游戏,Visual Basic源代码,-JiuGongTu chess game, Visual Basic source code,
- 2022-02-13 22:30:40下载
- 积分:1