Byte.CreateTruncating<TOther>(TOther) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Crea una instancia del tipo actual a partir de un valor, truncando los valores que se encuentran fuera del intervalo que se puede representar del tipo actual.
public:
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static System::Byte CreateTruncating(TOther value) = System::Numerics::INumberBase<System::Byte>::CreateTruncating;
public static byte CreateTruncating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;
static member CreateTruncating : 'Other -> byte (requires 'Other :> System.Numerics.INumberBase<'Other>)
Public Shared Function CreateTruncating(Of TOther As INumberBase(Of TOther)) (value As TOther) As Byte
Parámetros de tipo
- TOther
Tipo de value
.
Parámetros
- value
- TOther
Valor que se usa para crear la instancia de TSelf
.
Devoluciones
Instancia de creada a partir de TSelf
value
, truncando si value
se encuentra fuera del intervalo representable de TSelf
.