Method TryParseByte
TryParseByte(string?, NumberStyles, IFormatProvider?, out object?)
public static bool TryParseByte(string? s, NumberStyles style, IFormatProvider? provider, out object? result)
Parameters
sstringThe string to parse.
styleNumberStylesA bitwise combination of NumberStyles values that indicates the permitted format of
s.providerIFormatProviderAn object that supplies culture-specific formatting information about
s.resultobjectWhen this method returns and if the conversion succeeded, contains a number equivalent of the numeric value or symbol contained in
s. Contains default value for the type if the conversion failed.
Returns
- bool
trueif s was converted successfully; otherwise,false.