Appends the string parameter to the end of the current SqlString to create a new SqlString object.

Namespace: NHibernate.SqlCommand
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public SqlString Append(
	string rhs
)
Visual Basic
Public Function Append ( _
	rhs As String _
) As SqlString
Visual C++
public:
SqlString^ Append(
	String^ rhs
)

Parameters

rhs
Type: System..::..String
The string to append.

Return Value

A new SqlString object.

Remarks

A SqlString object is immutable so this returns a new SqlString. If multiple Appends are called it is better to use the SqlStringBuilder.

See Also