https://docs.microsoft.com/en-us/dotnet/csharp/tutorials/attributes
# 继承 Attribute
1234public class MySpecialAttribute : Attribute{}
With the above, I can now use [MySpecial] or [MySpecialAttribute] as an attribute elsewhere in the code base.
123[MySpecial]public class...