更新基础组件
智能大石头 authored at 2025-12-09 17:09:38
481.00 B
AntJob
using System;
using System.Threading;
using NewLife.Log;
using NewLife.Remoting;

namespace Test
{
    class Program
    {
        static void Main(String[] args)
        {
            XTrace.UseConsole();

            try
            {
                Test1();
            }
            catch (Exception ex)
            {
                XTrace.WriteException(ex);
            }

            Thread.Sleep(-1);
        }

        static void Test1()
        {

        }
    }
}