This commit is contained in:
PastSaid
2024-08-29 09:42:49 +08:00
parent fa480006a8
commit 5472714e30
66 changed files with 7417 additions and 243 deletions

27
CheckDll/Class1.cs Normal file
View File

@@ -0,0 +1,27 @@
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;
}
}
}
}