Type.IsLayoutSequential Свойство

Определение

Возвращает значение, указывающее, выкладываются ли поля текущего типа последовательно, в том порядке, в котором они были определены, или выдаются в метаданные.

public:
 property bool IsLayoutSequential { bool get(); };
public bool IsLayoutSequential { get; }
member this.IsLayoutSequential : bool
Public ReadOnly Property IsLayoutSequential As Boolean

Значение свойства

Boolean

Значение true, если свойство Attributes текущего типа включает SequentialLayout; в противном случае — значение false.

Реализации

Примеры

В следующем примере создается экземпляр класса, для которого LayoutKind.Sequential StructLayoutAttribute было задано значение перечисления в классе, проверяется наличие IsLayoutSequential Свойства и отображается результат.

#using <System.dll>

using namespace System;
using namespace System::Reflection;
using namespace System::ComponentModel;
using namespace System::Runtime::InteropServices;
ref class MyTypeSequential1{};


[StructLayoutAttribute(LayoutKind::Sequential)]
ref class MyTypeSequential2{};

int main()
{
   try
   {
      
      // Create an instance of myTypeSeq1.
      MyTypeSequential1^ myObj1 = gcnew MyTypeSequential1;
      
      // Check for and display the SequentialLayout attribute.
      Console::WriteLine( "\nThe object myObj1 has IsLayoutSequential: {0}.", myObj1->GetType()->IsLayoutSequential );
      
      // Create an instance of 'myTypeSeq2' class.
      MyTypeSequential2^ myObj2 = gcnew MyTypeSequential2;
      
      // Check for and display the SequentialLayout attribute.
      Console::WriteLine( "\nThe object myObj2 has IsLayoutSequential: {0}.", myObj2->GetType()->IsLayoutSequential );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "\nAn exception occurred: {0}", e->Message );
   }

}
using System;
using System.Reflection;
using System.ComponentModel;
using System.Runtime.InteropServices;
class MyTypeSequential1
{
}
[StructLayoutAttribute(LayoutKind.Sequential)]
class MyTypeSequential2
{
    public static void Main(string []args)
    {
        try
        {
            // Create an instance of myTypeSeq1.
            MyTypeSequential1 myObj1 = new MyTypeSequential1();
            Type myTypeObj1 = myObj1.GetType();
            // Check for and display the SequentialLayout attribute.
            Console.WriteLine("\nThe object myObj1 has IsLayoutSequential: {0}.", myObj1.GetType().IsLayoutSequential);
            // Create an instance of 'myTypeSeq2' class.
            MyTypeSequential2 myObj2 = new MyTypeSequential2();
            Type myTypeObj2 = myObj2.GetType();
            // Check for and display the SequentialLayout attribute.
            Console.WriteLine("\nThe object myObj2 has IsLayoutSequential: {0}.", myObj2.GetType().IsLayoutSequential);
        }
        catch(Exception e)
        {
            Console.WriteLine("\nAn exception occurred: {0}", e.Message);
        }
    }
}
Imports System.Reflection
Imports System.ComponentModel
Imports System.Runtime.InteropServices

Class MyTypeSequential1
End Class
<StructLayoutAttribute(LayoutKind.Sequential)> Class MyTypeSequential2
    Public Shared Sub Main()
        Try
            ' Create an instance of MyTypeSequential1.
            Dim myObj1 As New MyTypeSequential1()
            Dim myTypeObj1 As Type = myObj1.GetType()
            ' Check for and display the SequentialLayout attribute.
            Console.WriteLine(ControlChars.Cr + "The object myObj1 has IsLayoutSequential: {0}.", myObj1.GetType().IsLayoutSequential.ToString())
            ' Create an instance of MyTypeSequential2.
            Dim myObj2 As New MyTypeSequential2()
            Dim myTypeObj2 As Type = myObj2.GetType()
            ' Check for and display the SequentialLayout attribute.
            Console.WriteLine(ControlChars.Cr + "The object myObj2 has IsLayoutSequential: {0}.", myObj2.GetType().IsLayoutSequential.ToString())
        Catch e As Exception
            Console.WriteLine(ControlChars.Cr + "An exception occurred: {0}", e.Message.ToString())
        End Try
    End Sub
End Class

Комментарии

Это свойство предоставляется для удобства. Кроме того, можно использовать TypeAttributes.LayoutMask значение перечисления для выбора атрибутов макета типа, а затем проверить TypeAttributes.SequentialLayout , задан ли параметр. TypeAttributes.AutoLayout TypeAttributes.ExplicitLayout Значения перечисления, и TypeAttributes.SequentialLayout указывают способ расположения полей типа в памяти.

Для динамических типов можно указать TypeAttributes.SequentialLayout при создании типа. В коде примените StructLayoutAttribute атрибут со LayoutKind.Sequential значением перечисления к типу, чтобы указать, что макет является последовательным.

Примечание

Нельзя использовать метод, GetCustomAttributes чтобы определить, применен ли к StructLayoutAttribute типу.

Дополнительные сведения см. в разделе 9.1.2 спецификации документации по Common Language Infrastructure (CLI) "Partition II: определение метаданных и семантика". Документация доступна в Интернете; см. страницы ECMAC# и стандарты Common Language Infrastructure на сайте MSDN и Стандарт ECMA-335 — общеязыковая инфраструктура (CLI) на международном веб-сайте организации ECMA.

Если текущий объект Type представляет сконструированный универсальный тип, это свойство применяется к определению универсального типа, из которого был создан тип. например, если current Type представляет MyGenericType<int> ( MyGenericType(Of Integer) в Visual Basic), значение этого свойства определяется MyGenericType<T> .

Если Current Type представляет параметр типа в определении универсального типа или универсального метода, это свойство всегда возвращает значение false .

Применяется к

См. также раздел