BonCodeAJP13Namespace.BonCodeAJP13Packet.SetByte C# (CSharp) Метод

SetByte() защищенный статический Метод

Set the byte value in the array starting from the position Pos
protected static SetByte ( byte Data, byte Value, int Pos ) : int
Data byte
Value byte
Pos int
Результат int
        protected static int SetByte(byte[] Data, byte Value, int Pos)
        {
            Data[Pos] = Value;
            return Pos + 1;
        }