C# Class Pegasus.Expressions.LiteralExpression

Represents a literal string.
Inheritance: Expression
Show file Open project: otac0n/Pegasus Class Usage Examples

Public Methods

Method Description
LiteralExpression ( Cursor start, Cursor end, string value, bool ignoreCase = null, bool fromResource = false ) : System

Initializes a new instance of the LiteralExpression class.

Method Details

LiteralExpression() public method

Initializes a new instance of the LiteralExpression class.
public LiteralExpression ( Cursor start, Cursor end, string value, bool ignoreCase = null, bool fromResource = false ) : System
start Cursor The cursor just before the .
end Cursor The cursor just after the .
value string The literal value.
ignoreCase bool A value indicating whether or not the expression should ignore case differences when matching.
fromResource bool A value indicating whether corresponds to a resource name or a literal value.
return System