栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

C#类可以从其接口继承属性吗?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C#类可以从其接口继承属性吗?

否。每当实现接口或重写派生类中的成员时,都需要重新声明属性。

如果您只关心ComponentModel(而不是直接反射),则有一种方法(

[AttributeProvider]
)从现有类型中建议属性(以避免重复),但这仅对属性和索引器用法有效。

举个例子:

using System;using System.ComponentModel;class Foo {    [AttributeProvider(typeof(IListSource))]    public object Bar { get; set; }    static void Main() {        var bar = TypeDescriptor.GetProperties(typeof(Foo))["Bar"];        foreach (Attribute attrib in bar.Attributes) { Console.WriteLine(attrib);        }    }}

输出:

System.SerializableAttributeSystem.ComponentModel.AttributeProviderAttributeSystem.ComponentModel.EditorAttributeSystem.Runtime.InteropServices.ComVisibleAttributeSystem.Runtime.InteropServices.ClassInterfaceAttributeSystem.ComponentModel.TypeConverterAttributeSystem.ComponentModel.MergablePropertyAttribute


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/465569.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号