BraintreeEncryption.Library.BouncyCastle.Crypto.Util.Pack.UInt64_To_LE C# (CSharp) Метод

UInt64_To_LE() статический приватный Метод

static private UInt64_To_LE ( ulong n, byte bs ) : void
n ulong
bs byte
Результат void
        internal static void UInt64_To_LE(ulong n, byte[] bs)
        {
            UInt32_To_LE((uint)(n      ), bs);
            UInt32_To_LE((uint)(n >> 32), bs, 4);
        }

Same methods

Pack::UInt64_To_LE ( ulong n, byte bs, int off ) : void