packDate() public static méthode

public static packDate ( byte arr, int offs, DateTime val ) : void
arr byte
offs int
val DateTime
Résultat void
Exemple #1
0
 public int packDate(int offs, DateTime val)
 {
     extend(offs + 8);
     Bytes.packDate(arr, offs, val);
     return offs + 8;
 }