NullableTypes Class Library

NullableString.Concat Method 

Concatenates two specified instances of NullableString.

[Visual Basic]
Public Shared Function Concat( _
   ByVal a As NullableString, _
   ByVal b As NullableString _
) As NullableString
[C#]
public static NullableString Concat(
   NullableString a,
   NullableString b
);

Parameters

a
A NullableString structure.
b
A NullableString structure.

Return Value

The concatenation of str0 and str1.

Remarks

An Empty string is used in place of any null argument.

See Also

NullableString Class | NullableTypes Namespace