Beispiel #1
0
            public static long RandomLong()
            {
                var buffer = new byte[8];

                RandGen.NextBytes(buffer);
                return(BitConverter.ToInt64(buffer, 0));
            }