AcTools.LapTimes.LevelDbUtils.LevelDbExtensions.CopyToByteArray C# (CSharp) Метод

CopyToByteArray() публичный статический Метод

public static CopyToByteArray ( this source, byte destination, int offset ) : void
source this
destination byte
offset int
Результат void
        public static void CopyToByteArray(this int source, byte[] destination, int offset) {
            //if (destination == null) throw new ArgumentException("Destination array cannot be null");

            // check if there is enough space for all the 4 bytes we will copy
            // if (destination.Length < offset + 4) throw new ArgumentException("Not enough room in the destination array");

            destination[offset] = (byte)(source >> 24); // fourth byte
            destination[offset + 1] = (byte)(source >> 16); // third byte
            destination[offset + 2] = (byte)(source >> 8); // second byte
            destination[offset + 3] = (byte)source; // last byte is already in proper position
        }
    }
LevelDbExtensions