Table of Contents

Class Lower

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

Prefix expression that converts a string to lowercase using invariant culture.

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

Constructors

Lower()

Initializes a new instance of the Lower class with name "Lower" and exactly one parameter.

public Lower()

Methods

Run(List<object>)

Converts the provided string operand to lowercase using invariant culture rules.

protected override object Run(List<object> operands)

Parameters

operands List<object>

List containing exactly one operand that can be converted to string.

Returns

object

The lowercase representation of the input string using invariant culture.