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;
        }