You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
TomlTable table = TOML.Parse(reader);
foreach(TomlNode node in table["database"]["ports"])
Console.WriteLine(node);
}
There is a problem,
CS0121: The call is ambiguous between the following methods or properties: 'Console.WriteLine(bool)' and 'Console.WriteLine(int)'
The text was updated successfully, but these errors were encountered:
using(StreamReader reader = File.OpenText("configuration.toml"))
{
TomlTable table = TOML.Parse(reader);
foreach(TomlNode node in table["database"]["ports"])
Console.WriteLine(node);
}
There is a problem,
CS0121: The call is ambiguous between the following methods or properties: 'Console.WriteLine(bool)' and 'Console.WriteLine(int)'
The text was updated successfully, but these errors were encountered: