BonCodeAJP13Namespace.BonCodeAJP13Packet.SetDateTime C# (CSharp) Method

SetDateTime() protected static method

Set the DateTime value in the array starting from the position Pos
protected static SetDateTime ( byte Data, System.DateTime Value, int Pos ) : int
Data byte
Value System.DateTime
Pos int
return int
        protected static int SetDateTime(byte[] Data, DateTime Value, int Pos)
        {
            return SetInt64(Data, Value.ToBinary(), Pos);
        }