DisableNewAttribute.cs 304 B

1234567891011121314
  1. using System;
  2. namespace ET
  3. {
  4. /// <summary>
  5. /// 添加该标记的类或结构体禁止使用new关键字构造对象
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Class|AttributeTargets.Struct,Inherited = true)]
  8. public class DisableNewAttribute : Attribute
  9. {
  10. }
  11. }