In This Article

LambdaExpression Class

Represents a lambda expression.

public class LambdaExpression : Expression, IAstNode
Inheritance:
Object AstNodeBase Expression Object
Implements:
IAstNode

Remarks

This type was generated by the Actipro Language Designer tool v12.2.572.0 (http://www.actiprosoftware.com).

Constructors

LambdaExpression()

public LambdaExpression()

Properties

HasParameters

Returns whether the Parameters collection property contains at least one item.

public bool HasParameters { get; }

Property Value

Boolean:

true if there is at least one item in the collection; otherwise, false.

HasStatements

Returns whether the Statements collection property contains at least one item.

public bool HasStatements { get; }

Property Value

Boolean:

true if there is at least one item in the collection; otherwise, false.

Id

Gets the An integer value that identifies the type of AST node.

public override int Id { get; }

Property Value

Int32:

The An integer value that identifies the type of AST node.

Modifiers

Gets or sets the modifiers.

public Modifiers Modifiers { get; set; }

Property Value

Modifiers:

The modifiers.

Parameters

Gets the parameters.

public IList<ParameterDeclaration> Parameters { get; }

Property Value

IList<ParameterDeclaration>:

The parameters.

Statements

Gets the statements.

public IList<Statement> Statements { get; }

Property Value

IList<Statement>:

The statements.

Methods

GetChildrenEnumerator()

Retrieves an IEnumerator object that can iterate the child IAstNode objects in this node.

protected override IEnumerator<IAstNode> GetChildrenEnumerator()

Returns

IEnumerator<IAstNode>:

An IEnumerator object that can iterate the child IAstNode objects in this node.

Inherited Members