Tracy.Bai

Focus on Data analysis and Mining

导航

2008年8月12日

linq to object的第一个例子

摘要: MethodInfo[] methods = typeof(string).GetMethods(); var result = from m in methods where m.IsStatic != true select m.Name ; foreach (var r in ... 阅读全文

posted @ 2008-08-12 22:26 Love Fendi 阅读(178) 评论(0) 推荐(0) 编辑

c#3.0新特性

摘要: 1. automatic property 以前 我们 写属性 需要 这样写: public string LastName { get { return _lastName; } set { _lastName = value; ... 阅读全文

posted @ 2008-08-12 22:16 Love Fendi 阅读(455) 评论(0) 推荐(0) 编辑