INumberBase<TSelf>.TryConvertToSaturating<TOther> Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Tenta converter uma instância do tipo atual em outro tipo, saturando todos os valores que estão fora do intervalo representável do tipo atual.
protected:
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static bool TryConvertToSaturating(TSelf value, [Runtime::InteropServices::Out] TOther % result);
protected static abstract bool TryConvertToSaturating<TOther> (TSelf value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member TryConvertToSaturating : 'Self * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Protected Shared Function TryConvertToSaturating(Of TOther As INumberBase(Of TOther)) (value As TSelf, ByRef result As TOther) As Boolean
Parâmetros de tipo
- TOther
O tipo no qual value
deve ser convertido.
Parâmetros
- value
- TSelf
O valor que é usado para criar a instância de TOther
.
- result
- TOther
Quando este método retorna, contém uma instância de TOther
convertida de value
.
Retornos
false
se TOther
não houver suporte; caso contrário, true
.