var toml = @"global = ""this is a string"" # This is a comment of a table [my_table] key = 1 # Comment a key value = true list = [4, 5, 6] ";
// Parse the TOML string to the default runtime model `TomlTable` var model = Toml.ToModel(toml); // Fetch the string varglobal = (string)model["global"]!; // Prints: found global = "this is a string" Console.WriteLine($"found global = \"{global}\"");