Show / Hide Table of Contents

Class Expression

An evaluator expression.

Inheritance
System.Object
Expression
ConstantExpression
DynamicExpression
FunctionExpression
NamedExpression
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: SpiceSharpParser.Common.Evaluation
Assembly: SpiceSharpParser.dll
Syntax
public abstract class Expression

Constructors

| Improve this Doc View Source

Expression(String)

Initializes a new instance of the Expression class.

Declaration
protected Expression(string expression)
Parameters
Type Name Description
System.String expression

Expression.

Properties

| Improve this Doc View Source

CanProvideValueDirectly

Gets the value indicating whether expression can provide value without evaluation.

Declaration
public abstract bool CanProvideValueDirectly { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

ValueExpression

Gets the expression string.

Declaration
public string ValueExpression { get; }
Property Value
Type Description
System.String

Methods

| Improve this Doc View Source

Clone()

Clones the expression.

Declaration
public abstract Expression Clone()
Returns
Type Description
Expression

A cloned expression.

| Improve this Doc View Source

GetValue()

Declaration
public abstract double GetValue()
Returns
Type Description
System.Double
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX