Example #1
0
 public double GetDate(IntPtr isolate, IntPtr holder, bool isByRef)
 {
     return(PuertsDLL.GetDateFromValue(isolate, holder, isByRef));
 }
Example #2
0
        public DateTime GetDateTime(bool isByRef)
        {
            var ticks = PuertsDLL.GetDateFromValue(isolate, value, isByRef);

            return((new DateTime(1970, 1, 1)).AddMilliseconds(ticks));
        }