Type.IsExplicitLayout 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得表示目前類型的欄位是否已在明確指定之位移配置版面的值。
public:
property bool IsExplicitLayout { bool get(); };
public bool IsExplicitLayout { get; }
member this.IsExplicitLayout : bool
Public ReadOnly Property IsExplicitLayout As Boolean
屬性值
如果目前類型的 Attributes 屬性包含 ExplicitLayout則為 true
,否則為 false
。
實作
範例
下列範例會建立 類型的實例,並顯示其 IsExplicitLayout 屬性的值。 它會使用 類別 MySystemTime
,這也會在 的程式碼範例中。 StructLayoutAttribute
using System;
using System.Reflection;
using System.ComponentModel;
using System.Runtime.InteropServices;
// Class to test for the ExplicitLayout property.
[StructLayout(LayoutKind.Explicit, Size=16, CharSet=CharSet.Ansi)]
public class MySystemTime
{
[FieldOffset(0)]public ushort wYear;
[FieldOffset(2)]public ushort wMonth;
[FieldOffset(4)]public ushort wDayOfWeek;
[FieldOffset(6)]public ushort wDay;
[FieldOffset(8)]public ushort wHour;
[FieldOffset(10)]public ushort wMinute;
[FieldOffset(12)]public ushort wSecond;
[FieldOffset(14)]public ushort wMilliseconds;
}
public class Program
{
public static void Main(string[] args)
{
// Create an instance of the type using the GetType method.
Type t = typeof(MySystemTime);
// Get and display the IsExplicitLayout property.
Console.WriteLine("\nIsExplicitLayout for MySystemTime is {0}.",
t.IsExplicitLayout);
}
}
open System.Runtime.InteropServices
// Class to test for the ExplicitLayout property.
[<StructLayout(LayoutKind.Explicit, Size=16, CharSet=CharSet.Ansi)>]
type MySystemTime =
[<FieldOffset 0>] val public wYear: uint16
[<FieldOffset 2>] val public wMonth: uint16
[<FieldOffset 4>] val public wDayOfWeek: uint16
[<FieldOffset 6>] val public wDay: uint16
[<FieldOffset 8>] val public wHour: uint16
[<FieldOffset 10>] val public wMinute: uint16
[<FieldOffset 12>] val public wSecond: uint16
[<FieldOffset 14>] val public wMilliseconds: uint16
// Create an instance of the type using the GetType method.
let t = typeof<MySystemTime>
// Get and display the IsExplicitLayout property.
printfn $"\nIsExplicitLayout for MySystemTime is {t.IsExplicitLayout}."
Imports System.Reflection
Imports System.ComponentModel
Imports System.Runtime.InteropServices
'Class to test for the ExplicitLayout property.
<StructLayout(LayoutKind.Explicit, Size := 16, CharSet := CharSet.Ansi)> _
Public Class MySystemTime
<FieldOffset(0)> Public wYear As Short
<FieldOffset(2)> Public wMonth As Short
<FieldOffset(4)> Public wDayOfWeek As Short
<FieldOffset(6)> Public wDay As Short
<FieldOffset(8)> Public wHour As Short
<FieldOffset(10)> Public wMinute As Short
<FieldOffset(12)> Public wSecond As Short
<FieldOffset(14)> Public wMilliseconds As Short
End Class
Public Class Program
Public Shared Sub Main()
'Create an instance of type using the GetType method.
Dim t As Type = GetType(MySystemTime)
' Get and display the IsExplicitLayout property.
Console.WriteLine(vbCrLf & "IsExplicitLayout for MySystemTime is {0}.", _
t.IsExplicitLayout)
End Sub
End Class
備註
這個屬性會以方便的方式提供。 或者,您可以使用 TypeAttributes.LayoutMask 列舉值來選取類型配置屬性,然後測試是否已 TypeAttributes.ExplicitLayout 設定。 TypeAttributes.AutoLayout、 TypeAttributes.ExplicitLayout 和 TypeAttributes.SequentialLayout 列舉值表示在記憶體中配置類型欄位的方式。
針對動態類型,您可以在建立類型時指定 TypeAttributes.ExplicitLayout 。 在程式碼中,將 StructLayoutAttribute 具有 LayoutKind.Explicit 列舉值的 屬性套用至型別,以指定明確指定欄位開始的位移。
注意
您無法使用 GetCustomAttributes 方法來判斷 是否已 StructLayoutAttribute 套用至型別。
如果目前的 Type 表示已建構的泛型型別,則此屬性會套用至建構型別的來源泛型型別定義。 例如,如果目前的 Type 代表 MyGenericType<int>
Visual Basic) 中的 (MyGenericType(Of Integer)
,則此屬性的值是由 MyGenericType<T>
決定。
如果目前的 Type 代表泛型型別或泛型方法定義中的型別參數,這個屬性一律會傳 false
回 。