N
Next
I would like to compare to byte arrays.
Each array contains a timestamp from SQL database.
byte[] _ts1 = {0x00000000,...};
byte[] _ts2 = {0x00000001,...};
//this is what I am trying to do:
if ( _ts2 > _ts1)
_ts1 = _ts2;
How is the timestamp evaluated? In SQL I can compare them, and choose min or
max.
I can't figure out how to compare them in C#.
Thanks in advance for ANY help or suggestions you would give!
Aaron
Each array contains a timestamp from SQL database.
byte[] _ts1 = {0x00000000,...};
byte[] _ts2 = {0x00000001,...};
//this is what I am trying to do:
if ( _ts2 > _ts1)
_ts1 = _ts2;
How is the timestamp evaluated? In SQL I can compare them, and choose min or
max.
I can't figure out how to compare them in C#.
Thanks in advance for ANY help or suggestions you would give!
Aaron