Type.IsSealed 属性  
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示 Type 是否声明为密封的。
public:
 property bool IsSealed { bool get(); };public bool IsSealed { get; }member this.IsSealed : boolPublic ReadOnly Property IsSealed As Boolean属性值
如果 true 被声明为密封的,则为 Type;否则为 false。
实现
示例
以下示例创建类的 sealed 实例,检查 IsSealed 属性,并显示结果。
using namespace System;
// Declare MyTestClass as sealed.
ref class TestClass sealed{};
int main()
{
      TestClass^ testClassInstance = gcnew TestClass;
      
      // Get the type of testClassInstance.
      Type^ type = testClassInstance->GetType();
      
      // Get the IsSealed property of the myTestClassInstance.
      bool sealed = type->IsSealed;
      Console::WriteLine("{0} is sealed: {1}.", type->FullName, sealed);
}
// The example displays the following output:
//        TestClass is sealed: True.
using System;
 public class Example
 {
     // Declare InnerClass as sealed.
     sealed public class InnerClass
     {
     }
     public static void Main()
     {
          InnerClass inner = new InnerClass();
          // Get the type of InnerClass.
          Type innerType = inner.GetType();
          // Get the IsSealed property of  innerClass.
          bool isSealed = innerType.IsSealed;
          Console.WriteLine("{0} is sealed: {1}.", innerType.FullName, isSealed);
     }
}
// The example displays the following output:
//        Example+InnerClass is sealed: True.
module Example
// Declare InnerClass as sealed.
[<Sealed>]
type InnerClass() = class end
let inner = InnerClass()
// Get the type of InnerClass.
let innerType = inner.GetType()
// Get the IsSealed property of  innerClass.
let isSealed = innerType.IsSealed
printfn $"{innerType.FullName} is sealed: {isSealed}."
// The example displays the following output:
//        Example+InnerClass is sealed: True.
Public Class Example
    ' Declare InnerClass as sealed.
    Public NotInheritable Class InnerClass
    End Class
    
    Public Shared Sub Main()
         Dim inner As New InnerClass()
         ' Get the type of InnerClass.
         Dim innerType As Type = inner.GetType()
         ' Get the IsSealed property of InnerClass.
         Dim sealed As Boolean = innerType.IsSealed
         Console.WriteLine("{0} is sealed: {1}.", innerType.FullName, sealed)
    End Sub
End Class
' The example displays the following output:
'       Example+InnerClass is sealed: True.
注解
如果当前 Type 表示泛型类型的类型参数,则此属性始终返回 true。