09 2012 档案

摘要:[b]1、Model[/b][size=11px][/size] [code=C#] [Serializable] public class Student { /// <summary> /// 学生编号,唯一标识 /// </summary> public int Id { get; set; } /// <summary> /// 学生姓名 /// </summary> public string Name { get; set; } /// <summary> /// 学生性别 /// </summary> pub 阅读全文
posted @ 2012-09-09 19:05 attitudedecidesall 阅读(377) 评论(0) 推荐(0) 编辑
摘要:代码能说明一切:using System; using System.Collections.Generic; using System.Linq; using System.Text;namespace DearBruce.ConAppTest { enum Color { Red, Green, Blue }struct KeyValuePair<TKey, TValue> { public TKey Key { get; set; }public TValue Value { get; set; } }cla... 阅读全文
posted @ 2012-09-02 20:17 attitudedecidesall 阅读(465) 评论(0) 推荐(0) 编辑