Example #1
0
        /// <summary>
        /// 스레드의 진입 점
        /// </summary>
        /// <param name="pThis">The argument for the thread (this for current case)</param>
        private static void EntryPoint(object pThis)
        {
            ThreadEx pt = (ThreadEx)pThis;

            pt.Run();
        }