Table of Contents

Class Upper

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

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

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

Constructors

Upper()

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

public Upper()

Methods

Run(List<object>)

Converts the provided string operand to uppercase 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 uppercase representation of the input string using invariant culture.