NullableTypes Class Library

NullConvert.ToNullableByte Method (String, String)

Converts the specified String representation of a number to its NullableByte equivalent.

[Visual Basic]
Overloads Public Shared Function ToNullableByte( _
   ByVal x As String, _
   ByVal conventionalNullValue As String _
) As NullableByte
[C#]
public static NullableByte ToNullableByte(
   string x,
   string conventionalNullValue
);

Parameters

x
The String value to convert.
conventionalNullValue
The String value that conventionally represent the null value.

Return Value

Null if x is equals to conventionalNullValue otherwise a NullableByte constructed parsing x.

Exceptions

Exception TypeCondition
ArgumentNullExceptionx is a null reference (Nothing in Visual Basic) and conventionalNullValue is not a null reference.
FormatExceptionx value is not conventionalNullValue and Parse failed on x.

See Also

NullConvert Class | NullableTypes.HelperFunctions Namespace | NullConvert.ToNullableByte Overload List