packDate() public static method

public static packDate ( byte arr, int offs, DateTime val ) : void
arr byte
offs int
val DateTime
return void
Esempio n. 1
0
 public int packDate(int offs, DateTime val)
 {
     extend(offs + 8);
     Bytes.packDate(arr, offs, val);
     return offs + 8;
 }