添加项目文件。

This commit is contained in:
2025-06-13 10:52:21 +08:00
parent 4a876fbae0
commit cc986d2c1f
4 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Convention
{
namespace SAL
{
public interface IHasCheckMethod
{
bool Check();
}
public class ReturnValue { }
public enum ComparedFlag
{
Greater, Less, Equal, GreaterOrEqual, LessOrEqual, NotEqual
}
[System.AttributeUsage(AttributeTargets.ReturnValue, Inherited = true, AllowMultiple = true)]
public sealed class SuccessAttribute : Attribute, IHasCheckMethod
{
private List<object> exprs = new();
public bool Check()
{
throw new NotImplementedException();
}
}
}
public static class PlatformIndictaor
{
}
}