BooRunner.Tools.DigitConverter.ToBytes C# (CSharp) Метод

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

Converts big integer digits to bytes.
Digits can be obtained using BigInteger.GetInternalState method.
public static ToBytes ( uint digits ) : byte[]
digits uint digits.
Результат byte[]
        public static byte[] ToBytes(uint[] digits)
        {
            if (digits == null)
            {
                throw new ArgumentNullException("digits");
            }

            byte[] bytes = new byte[digits.Length * 4];
            Buffer.BlockCopy(digits, 0, bytes, 0, bytes.Length);
            return bytes;
        }
DigitConverter