为什么 Json.Net 中的属性类是密封的?
是否有任何特定原因例如 Newtonsoft.Json.JsonIgnoreAttribute 是密封类?我问的原因是因为我想对 Json.Net 调用进行包装,以便程序集引用仅位于一个程序集中(使更新程序集和测试更容易一些)。
Is there any spesific reason why e.g. Newtonsoft.Json.JsonIgnoreAttribute is a sealed class? The reason I ask is because I'd like to make wrapper around the Json.Net calls, so that the assembly ref is in one assembly only (makes updating the assembly and testing a bit easier).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为通常这意味着它们没有(或服务)没有扩展/专业化的目的(就像 .NET BCL 中存在的许多属性类型一样)。
Because generally that implies they have (or serve) no purpose being extended/specialized (like many attribute types that exists in the .NET BCL).