GCHandle.AddrOfPinnedObject 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取 Pinned 控制代碼中物件資料的位址。
public:
IntPtr AddrOfPinnedObject();
[System.Security.SecurityCritical]
public IntPtr AddrOfPinnedObject ();
public IntPtr AddrOfPinnedObject ();
public readonly IntPtr AddrOfPinnedObject ();
[<System.Security.SecurityCritical>]
member this.AddrOfPinnedObject : unit -> nativeint
member this.AddrOfPinnedObject : unit -> nativeint
Public Function AddrOfPinnedObject () As IntPtr
傳回
IntPtr
nativeint
已釘選資料物件的位址。
- 屬性
例外狀況
控制代碼是除了 Pinned 以外的任何型別。
備註
這個方法可用來取得對象數據的穩定指標。 對於陣列,這個方法會傳回第一個項目的位址。 如果是字串,這個方法會傳回第一個字元的位址。
釘選物件可防止垃圾收集行程在記憶體中移動,進而降低垃圾收集行程的效率。