-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnixTimestamp.cs
31 lines (29 loc) · 1018 Bytes
/
UnixTimestamp.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
namespace Teto {
/// <summary>
/// A Unix timestamp (in seconds).
/// </summary>
public class UnixTimestamp {
/// <summary>
/// The value of this timestamp.
/// </summary>
public int Value { get; private set; } = 0;
/// <summary>
/// Convert a DateTime into a new Unix timestamp.
/// </summary>
/// <param name="time"></param>
public UnixTimestamp(DateTime time) {
Value = (int)time.Subtract(new DateTime(1970, 1, 1)).TotalSeconds;
}
/// <summary>
/// Implicit cast to integer.
/// </summary>
/// <param name="u">The timestamp to be cast.</param>
public static implicit operator int(UnixTimestamp u) => u.Value;
/// <summary>
/// Implicit cast to string.
/// </summary>
/// <param name="u">The timestamp to be cast.</param>
public static implicit operator string(UnixTimestamp u) => u.Value.ToString();
}
}