Click here to Skip to main content
15,886,810 members
Articles / Programming Languages / C# 4.0

Extended Thread Pool

Rate me:
Please Sign up or sign in to vote.
4.98/5 (25 votes)
6 Apr 2013Ms-PL3 min read 81.7K   1.8K   119  
Your own extensible and configurable Thread Pool.
using System;

namespace Nelibur.Sword.Core
{
    public static class GuidComb
    {
        /// <summary>
        ///     Generate a new <see cref="T:System.Guid" /> using the comb algorithm.
        /// </summary>
        /// <remarks>
        ///     From NHibernate.
        /// </remarks>
        /// <returns>Возрастающий <see cref="Guid" />.</returns>
        public static Guid New()
        {
            byte[] b = Guid.NewGuid().ToByteArray();
            var dateTime = new DateTime(1900, 1, 1);
            DateTime now = DateTime.Now;
            var timeSpan = new TimeSpan(now.Ticks - dateTime.Ticks);
            TimeSpan timeOfDay = now.TimeOfDay;
            byte[] bytes1 = BitConverter.GetBytes(timeSpan.Days);
            byte[] bytes2 = BitConverter.GetBytes((long)(timeOfDay.TotalMilliseconds / 3.333333));
            Array.Reverse(bytes1);
            Array.Reverse(bytes2);
            Array.Copy(bytes1, bytes1.Length - 2, b, b.Length - 6, 2);
            Array.Copy(bytes2, bytes2.Length - 4, b, b.Length - 4, 4);
            return new Guid(b);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
United States United States
B.Sc. in Computer Science.

Comments and Discussions