Show / Hide Table of Contents

Struct TablePair

A class representing a key/value pair for Table use

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public struct TablePair

Constructors

TablePair(DynValue, DynValue)

Initializes a new instance of the TablePair struct.

Declaration
public TablePair(DynValue key, DynValue val)
Parameters
DynValue key

The key.

DynValue val

The value.

Properties

Key

Gets the key.

Declaration
public DynValue Key { get; }
Property Value
DynValue

Nil

Gets the nil pair

Declaration
public static TablePair Nil { get; }
Property Value
TablePair

Value

Gets or sets the value.

Declaration
public DynValue Value { get; set; }
Property Value
DynValue

Back to top Built by Itinero, MIT licensed.