public static void Set(this IUntyped untyped, double val, DateTimeOffset timestamp)
 {
     untyped.Set(val, timestamp.ToUnixTimeMilliseconds());
 }
Example #2
0
 public static void Set(this IUntyped untyped, double val, DateTime timestamp)
 {
     untyped.Set(val, timestamp.ToUnixTime());
 }