in reply to Re^2: Calculate clock ticks since a given date
in thread Calculate clock ticks since a given date
My project comes from working with a credit card merchant (I have no voice in deciding which) requires a field in the HTML form generated from a Perl script that is based on "UTC time in ticks".
Does the C# snippet derive from that credit card company, or just some arbitrary thing found on the web?
If not the former, you'd best ask them what the EPOCH_ADJUST_CONSTANT should be in:
my $CCTime = ( time() + ($localeOffset * 3600) ) * 100 + EPOCH_ADJUST_ +CONSTANT;
|
|---|