29

これは、.NET Framework BCLのクラスに関する多くのXMLコメントで見られましたが、その機能を説明するドキュメントを見つけることができませんでした。

例として、System.Objectを見ると、次のコメントが表示されます。

namespace System   
{
    /// <summary>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.</summary>
    /// <filterpriority>1</filterpriority> 
    [System.Runtime.InteropServices.ClassInterfaceAttribute(2)]
    public class Object    
    {    
        /// <summary>Determines whether the specified 
        /// <see cref="T:System.Object" /> 
        /// instances are considered equal.</summary>  
        /// <returns>true if objA is the same instance as objB or
        /// if both are null
        /// references or if objA.Equals(objB) returns true; 
        /// otherwise, false.</returns>
        /// <param name="objB">The second <see cref="T:System.Object" /> 
        /// to compare. </param>
        /// <param name="objA">The first <see cref="T:System.Object" /> 
        /// to compare. </param>
        /// <filterpriority>2</filterpriority>
        public static bool Equals(object objA, object objB);
     }
 }
4

2 に答える 2

16

推測: インテリセンスの [すべて] タブと [共通] タブ?

于 2008-11-11T16:47:37.037 に答える
8

これは、EditorBrowsableAttributeでメンバーを装飾するのと同じです。値0、1、および2は、Always、Advanced、およびNeverに対応すると思います。

于 2009-01-03T12:53:50.130 に答える