[]
Parses the specified expression string and returns an ExpressionInfo object that represents the specified expression.
[Obsolete("Use FromString method instead.")]
public static ExpressionInfo Parse(string expressionString)
Type | Name | Description |
---|---|---|
string | expressionString | String to parse |
Type | Description |
---|---|
ExpressionInfo |
Parses the specified expression string and returns an ExpressionInfo object that represents the specified expression.
[Obsolete("Use FromString method instead.")]
public static ExpressionInfo Parse(string expressionString, ExpressionResultType subType)
Type | Name | Description |
---|---|---|
string | expressionString | The string to parse |
ExpressionResultType | subType | If the expressionString parameter does not start with an equals sign (=), then the expression is treated as a constant with an enumerated ExpressionResultType. |
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object that represents the specified expression. |