如何在参数中指定时间戳格式值
本文关键字:定时间 时间戳 格式 参数 | 更新日期: 2023-09-27 18:16:12
[Timestamp]
public byte[] Timestamp { get; set; }
如何给Timestamp赋一个虚拟值
如果你只是想避免null值:
Timestamp = new byte[0];
试试这个:-
public class Time
{
[Timestamp]
private Lazy<byte[]> _timestamp=new Lazy<byte[]>();
[Timestamp]
public Lazy<byte[]> Timestamp
{
get
{
return _timestamp;
}
set { _timestamp = value; }
}
}