Class TomlInlineTable
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()