Unsafe.BitCast<TFrom,TTo>(TFrom) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將型 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
不相同。