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);
............
小唯快跑啊
qq_花开花谢_0