Compartir a través de


HeaderUtilities.TryParseNonNegativeInt64(StringSegment, Int64) Método

Definición

Intente convertir una StringSegment representación de un número positivo en su entero de 64 bits con signo equivalente. Un valor devuelto indica si la conversión se realizó correctamente o si se produjeron errores.

public:
 static bool TryParseNonNegativeInt64(Microsoft::Extensions::Primitives::StringSegment value, [Runtime::InteropServices::Out] long % result);
public static bool TryParseNonNegativeInt64 (Microsoft.Extensions.Primitives.StringSegment value, out long result);
static member TryParseNonNegativeInt64 : Microsoft.Extensions.Primitives.StringSegment * int64 -> bool
Public Shared Function TryParseNonNegativeInt64 (value As StringSegment, ByRef result As Long) As Boolean

Parámetros

value
StringSegment

que StringSegment contiene un número que se va a convertir.

result
Int64

Cuando este método devuelve , contiene el valor entero con signo de 64 bits equivalente al número contenido en la cadena, si la conversión se realizó correctamente o cero si se produjo un error en la conversión. Se produce un error en la conversión si es StringSegment null o String.Empty, no tiene el formato correcto, es negativo o representa un número mayor que Int64.MaxValue. Este parámetro se pasa sin inicializar; se sobrescribirán todos los valores proporcionados originalmente en el resultado.

Devoluciones

true si el análisis se realizó correctamente; de lo contrario, false.

Se aplica a