public DateTime FLD_FJ_KSSJ
{
get
{
byte[] dst = new byte[4];
Buffer.BlockCopy(this.Byte_0, 0x34, dst, 0, 4);
DateTime time = new DateTime(0x7b2, 1, 1, 8, 0, 0);
return time.AddSeconds((double) BitConverter.ToInt32(dst, 0));
}
set
{
DateTime time = new DateTime(0x7b2, 1, 1, 8, 0, 0);
Buffer.BlockCopy(BitConverter.GetBytes((int) value.Subtract(time).TotalSeconds), 0, this.Byte_0, 0x34, 4);
}
}
public int FLD_FJ_MAGIC0
{
get
{
byte[] dst = new byte[2];
Buffer.BlockCopy(this.Byte_0, 0x24, dst, 0, 2);
return BitConverter.ToInt16(dst, 0);<