在C#中ID/OK曾经被使用过吗?
使用标准命名约定时,是否存在使用全部大写的 ID 或 OK 是正确的情况?
With standard naming conventions is there ever a scenario that it is correct to use ID or OK in all capitals?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。根据 .NET Framework 设计指南,正确的大写是
Id
和Ok
,因为这些是缩写,而不是首字母缩略词。但是,如果您已经拥有已使用
ID
或OK
的发布 DLL,那么您不应该更改它们,因为这会破坏消费者。因此,例如,.NET Framework 中有一些这些大写字母的实例。No. According to the .NET Framework design guidelines, the correct capitalization is
Id
andOk
as these are abbreviations, not acronyms.However, if you already have shipping DLLs which already use
ID
orOK
then you should not change them as it will break consumers. Hence why the .NET Framework has some instances of these capitalizations, for example.