BonCodeAJP13Namespace.BonCodeAJP13Packet.SetDateTime C# (CSharp) 메소드

SetDateTime() 보호된 정적인 메소드

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
리턴 int
        protected static int SetDateTime(byte[] Data, DateTime Value, int Pos)
        {
            return SetInt64(Data, Value.ToBinary(), Pos);
        }