我有 2 个私有常量和一个公共方法:
private const byte _minAge = 24;
private const byte _maxAge = 29;
public bool IsInAgeRange() { ... }
我正在添加 XML 文档,并且希望我的代码的用户可以在 IntelliSense 中阅读此文档:Checks whether the age is within the allowed range (between 24 and 29).
我的问题是:有没有办法将我的 const 呈现到我的 XML 文档中?
我想出的替代方案是:
- 只需在文档中写 24 和 29 (缺乏对实际值的依赖)
- 公开 consts 并添加
<see cref="MinAge">
and<see cref="MaxAge">
(减少封装并使文档信息量减少)