Show / Hide Table of Contents

Class NamedExpression

Inheritance
System.Object
Expression
NamedExpression
Inherited Members
Expression.ValueExpression
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.Expressions
Assembly: SpiceSharpParser.dll
Syntax
public class NamedExpression : Expression

Constructors

| Improve this Doc View Source

NamedExpression(String, String)

Initializes a new instance of the NamedExpression class.

Declaration
public NamedExpression(string name, string expression)
Parameters
Type Name Description
System.String name

A name of expression.

System.String expression

An expression.

Properties

| Improve this Doc View Source

CanProvideValueDirectly

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

Name

Gets the name of expression.

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

Methods

| Improve this Doc View Source

Clone()

Clones the named expression.

Declaration
public override Expression Clone()
Returns
Type Description
Expression

A clone of named expression.

Overrides
Expression.Clone()
| Improve this Doc View Source

GetValue()

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