Esempio n. 1
0
        /// <summary>
        /// Executes the non viewer action.
        /// </summary>
        public static void ExecuteNonViewerAction(Action action, string data)
        {
            var ae = new ActionExecutor(action, data);

            var ts = new ThreadStart(ae.Execute);
            var t  = new Thread(ts);

            t.Start();
        }