Click or drag to resize

MultilanguageStringConcat Method (String, MultilanguageString)

Concatenates a MultilanguageString and a normal string, by concatenating each language string with the normal string.

Namespace:  Aloe.EnterpriseOne.Model
Assembly:  Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntax
public static MultilanguageString Concat(
	string first,
	MultilanguageString second
)

Parameters

first
Type: SystemString
The normal string to concatenate with each language string.
second
Type: Aloe.EnterpriseOne.ModelMultilanguageString
The MultilanguageString to concatenate.

Return Value

Type: MultilanguageString
The result of the concatenation.
Remarks
The concatenation is performed separately for each language. The resulting MultilanguageString contains language pairs for each of the languages in second. Each resulting language string is concatenation of the normal string with the language string in second.
See Also