Click or drag to resize

MultilanguageStringConcat Method (MultilanguageString, String)

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(
	MultilanguageString first,
	string second
)

Parameters

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

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 first. Each resulting language string is concatenation of the language string in first with the normal string.
See Also