111,129
社区成员
发帖
与我相关
我的任务
分享
public class SelfSizeStatus
{
public DateTime theDateTime { set; get; }
public int theID { set; get; }
public double theHeight { set; get; }
.......................//以下有几十个属性
.......................
.......................
}
SelfSizeStatus AA=new SelfSizeStatus();
SelfSizeStatus BB=new SelfSizeStatus();
AA.theID=2;
AA.theHeight=32;
BB=AA;
AA.theID=88;