NullableTypes Class Library

NullConvert.ToNullableInt16 Method (String, String)

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

[Visual Basic]
Overloads Public Shared Function ToNullableInt16( _
   ByVal x As String, _
   ByVal conventionalNullValue As String _
) As NullableInt16
[C#]
public static NullableInt16 ToNullableInt16(
   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 NullableInt16 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.ToNullableInt16 Overload List