NullableTypes Class Library

NullableString Addition Operator 

Concatenates the two specified NullableString structures.

[Visual Basic]
returnValue = NullableString.op_Addition(a, b)
[C#]
public static NullableString operator +(
   NullableString a,
   NullableString b
);

Parameters

a
A NullableString structure.
b
A NullableString structure.

Return Value

A NullableString containing the newly concatenated value representing the contents of the two NullableString parameters.

See Also

NullableString Class | NullableTypes Namespace