Ejemplo n.º 1
0
        /// <summary>
        /// Creates the free keys.
        /// </summary>
        /// <param name="count">The count.</param>
        /// <returns>System.String[].</returns>
        private string[] CreateFreeKeys(int count)
        {
            string[] result = new string[count];
            for (int i = 0; i < count; i++)
            {
                result[i] = _coll.CreateFreeKey();
            }

            return(result);
        }