为什么SqlDataReader类不能被继承?
SqlDataReader
类没有标记为密封那么是什么使它不可继承呢?
SqlDataReader
class is not marked sealed then what makes it uninheritable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SqlDataReader
类型的构造函数被标记为internal
,这意味着它只能通过System.Data.dll
程序集中的类型进行实例化。这也禁止您继承它,因为基类型无法实例化。The
SqlDataReader
type's constructor is marked asinternal
which means it can only be instantiated through types in theSystem.Data.dll
assembly. This also prohibits you from inheriting from it, as the base type cannot be instantiated.它唯一的构造函数被标记为内部,因此它不能被任何非框架代码调用。
Its only constructor is marked as internal, so it cannot be called by any non-framework code.