Table of Contents

Class Concat

Namespace
Albatross.Expression.Prefix
Assembly
Albatross.Expression.dll

Prefix expression that concatenates multiple operands into a single string. Takes one or more parameters and joins them together without separators.

public class Concat : PrefixExpression, IPrefixExpression, IExpression, IToken
Inheritance
Concat
Implements
Inherited Members
Extension Methods

Constructors

Concat()

Initializes a new instance of the Concat class with name "Concat" and variable parameter count (minimum 1).

public Concat()

Methods

Run(List<object>)

Concatenates all operands into a single string by converting each to string and joining without separators.

protected override object Run(List<object> operands)

Parameters

operands List<object>

List containing one or more operands to concatenate.

Returns

object

A string containing all operands concatenated together.