public struct Person{public long id;public string name;public bool isStudent;}Person pB; //这里也要新建一个变量 DateTime也是struct类型 为什么不用呢pB.id = 20080001;pB.name = "Keller";pB.isStudent = false;Response.Write("<br>id = " + pB.id);Response.Write("<br>name = " + pB.name);............
- 2 回答
- 0 关注
- 254 浏览
添加回答
举报
0/150
提交
取消