日期实体类:
private DateTime fSupplyDate;
public DateTime FSupplyDate
{
get { return fSupplyDate; }
set { value = fSupplyDate; }
}
如何给它赋值当前日期
private DateTime fSupplyDate;
public DateTime FSupplyDate
{
get { return fSupplyDate; }
set { fSupplyDate= value; }
}
类名.属性名=DateTime.Now;
恩,谢谢了,是我大意了
一般我都写在构造函数里,如果是一个表示插入的时间的字段,在构造函数中赋值当前时间
别说理论啊,写个实例,在类里如何给这个日期属性赋值
@丶夏之星: 0.0这个还要实例``
public class a { public a() { insertTime=datetime.now; } public datetime insertTime{get;set;} }
@吴瑞祥: DueInfo due = new DueInfo();
due.FSupplyDate = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss
这样写了,但是右边正确有值,但是没有给左边赋值
类名.属性名=时间
@吴瑞祥: DueInfo due = new DueInfo();
due.FSupplyDate = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss
这样写了,但是右边正确有值,但是没有给左边赋值