コード例 #1
0
        private readonly byte[] seed; //32 bytes

        /// <summary>
        ///     Initializes a new instance of the <see cref="RandomService" /> class.
        /// </summary>
        /// <param name="seed">The project seed.</param>
        public RandomService(string seed)
        {
            this.seed = RandomGenerator.Seed(seed);
        }