Files
GateDge2023_ljy/CheckDll/Class1.cs

27 lines
465 B
C#
Raw Normal View History

2024-08-29 09:42:49 +08:00
using Kingdee.BOS.Util;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace ACheckDll
{
[HotUpdate, Description("TEST")]
public class Class1
{
public void AAAAA()
{
try
{
throw new Exception("TEST");
}
catch (Exception ex)
{
throw ex;
}
}
}
}