添加项目文件。

This commit is contained in:
GG Z
2026-02-28 21:04:12 +08:00
parent e30d1be28b
commit f5893778a3
64 changed files with 3313 additions and 0 deletions

20
MSUtils/TestClass.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MSUtils
{
public class TestClass
{
/// <summary>
/// 测试异常
/// </summary>
/// <exception cref="NullReferenceException"></exception>
public static void NullException()
{
throw new NullReferenceException("test exception in reference");
}
}
}