UInt32.INumberBase<UInt32>.TryConvertToChecked<TOther> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試將目前型別的實例轉換成另一個型別,針對落在目前類型可表示範圍以外的任何值擲回溢位例外狀況。
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static bool System.Numerics.INumberBase<System.UInt32>.TryConvertToChecked(System::UInt32 value, [Runtime::InteropServices::Out] TOther % result) = System::Numerics::INumberBase<System::UInt32>::TryConvertToChecked;
static bool INumberBase<uint>.TryConvertToChecked<TOther> (uint value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member System.Numerics.INumberBase<System.UInt32>.TryConvertToChecked : uint32 * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Shared Function TryConvertToChecked(Of TOther As INumberBase(Of TOther)) (value As UInteger, ByRef result As TOther) As Boolean Implements INumberBase(Of UInteger).TryConvertToChecked
類型參數
- TOther
應該轉換的目標 value
型別。
參數
- value
- UInt32
用來建立 實例的值 TOther
。
- result
- TOther
當這個方法傳回時,包含從 value
轉換的 TOther
實例。
傳回
false
如果 TOther
不支援,則為 ,否則為 true
。