首页 > 代码库 > 定制特性
定制特性
1,定制特性
①C#允许用一个前缀明确指定特性要应用的目标元素
[assembly: AssemblyVersion("1.0.0.0")]
②AttributeUsage. Inherited(特性应用于基类时,是否同时应用于派生类和重写的方法)
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method,Inherited = true)] internal class TastyAttribute : Attribute { } [Tasty,Serializable] internal class BaseType { [Tasty] protected virtual void DoSomething(){} } //继承父类Tasty的特性 internal class DerivedType : BaseType { //继承Tasty的特性 protected override void DoSomething(){} }
//如果特性类没有显示的引用AttributeUsage,则默认AttributeUsage如下 [AttributeUsage(AttributeTargets.All,AllowMultiple = false, Inherited = true)]
定制特性
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。