共用方式為


Unsafe.BitCast<TFrom,TTo>(TFrom) 方法

定義

將型 TFrom 別的指定值重新解譯為 類型的 TTo值。

public:
generic <typename TFrom, typename TTo>
 where TFrom : value class where TTo : value class static TTo BitCast(TFrom source);
public static TTo BitCast<TFrom,TTo> (TFrom source) where TFrom : struct where TTo : struct;
static member BitCast : 'From -> 'o (requires 'From : struct and 'o : struct)
Public Shared Function BitCast(Of TFrom As Structure, TTo As Structure) (source As TFrom) As TTo

類型參數

TFrom
TTo

參數

source
TFrom

傳回

TTo

型別 TTo 的值。

例外狀況

TTo 的大小TFrom不相同。

適用於