Table of Contents

Class TomlInlineTable

Namespace
RStein.TOML
Assembly
RStein.TOML.dll

Represents a TOML inline table, which is a table defined inline using brace notation.

public class TomlInlineTable : TomlTable, IEnumerable<TomlToken>, IDictionary<TomlKey, TomlToken>, ICollection<KeyValuePair<TomlKey, TomlToken>>, IEnumerable<KeyValuePair<TomlKey, TomlToken>>, IEnumerable
Inheritance
TomlInlineTable
Implements
Inherited Members

Examples

// TOML inline table syntax
point = { x = 1, y = 2 }

Remarks

TomlInlineTable is a specialized subclass of TomlTable that represents inline table syntax in TOML. Functionally, inline tables and regular tables are equivalent; this class distinction is maintained for accurate serialization.

Constructors

TomlInlineTable()

Initializes a new instance of the TomlInlineTable.

public TomlInlineTable()

Methods

ToString()

public override string ToString()

Returns

string