Table of Contents

Interface IVariable

Namespace
NominalSystems.Core
Assembly
NominalSystems.Core.dll

[NominalSystems] Represents a serializable variable (ex: field or property)

public interface IVariable

Properties

Name

The variable's name

string Name { get; }

Property Value

string

Type

The variable type

Type Type { get; }

Property Value

Type

Value

The variable's value

object Value { get; set; }

Property Value

object