Goedel.Cryptography.KeyFile.DataBuffer.EncodeLength C# (CSharp) 메소드

EncodeLength() 공개 메소드

public EncodeLength ( uint Length ) : void
Length uint
리턴 void
        public void EncodeLength (uint Length) {
            Data[Pointer++] = (byte)((Length >> 24) & 0xff);
            Data[Pointer++] = (byte)((Length >> 16) & 0xff);
            Data[Pointer++] = (byte)((Length >> 8) & 0xff);
            Data[Pointer++] = (byte)(Length & 0xff);
            }