Ejemplo n.º 1
0
 public EcmaDate(long year, long month, long date, long hours, long minutes, long seconds, long milliseconds)
     : this(EcmaTimestamp.GetTimestamp(EcmaTimestamp.LocalEpoch.Value, 0, year, month, date, hours, minutes, seconds, milliseconds))
 {
 }
Ejemplo n.º 2
0
 private long SetComponents(EcmaDateComponent start, params long[] args)
 {
     timestamp = (EcmaTimestamp)EcmaTimestamp.GetTimestamp(timestamp.Value, (int)start, args);
     return(timestamp.Value);
 }
Ejemplo n.º 3
0
 public EcmaDate(long year, long month, long date, long hours)
     : this(EcmaTimestamp.GetTimestamp(EcmaTimestamp.LocalEpoch.Value, 0, year, month, date, hours))
 {
 }
Ejemplo n.º 4
0
 public EcmaDate(long year, long month)
     : this(EcmaTimestamp.GetTimestamp(EcmaTimestamp.LocalEpoch.Value, 0, year, month))
 {
 }