我已经在.NET Framework BCL中的类的许多XML注释中看到了这一点,但是从来没有找到解释它的功能的文档.
例如,查看System.Object会显示以下注释:
namespace System { ///Supports all classes in the .NET Framework class hierarchy /// and provides low-level services to derived classes. This is the /// ultimate base class of all classes in the .NET Framework; it is the /// root of the type hierarchy. ///1 [System.Runtime.InteropServices.ClassInterfaceAttribute(2)] public class Object { ///Determines whether the specified /// ////// instances are considered equal. true if objA is the same instance as objB or /// if both are null /// references or if objA.Equals(objB) returns true; /// otherwise, false. /// The second/// to compare. /// The first /// to compare. /// 2 public static bool Equals(object objA, object objB); } }
Joel Coehoor.. 16
只是一个猜测:intellisense中的All vs Common选项卡?
只是一个猜测:intellisense中的All vs Common选项卡?
它与使用EditorBrowsableAttribute装饰您的成员相同.我猜测值0,1和2对应于Always,Advanced和Never.