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
{{ message }}
This repository was archived by the owner on Oct 19, 2020. It is now read-only.
class Test
{
public string FirstName { get; set;}
public string Surname { get; set;}
}
class Enc
{
public Test[] Stuff {get; set;}
}
...
Test t1 = new Test { FirstName = "Bill", Surname = "Gates" };
Test t2 = new Test { FirstName = "Barbara", Surname = "Streisand" };
Test[] t = new[] { t1, t2 };
Enc e = new Enc {Stuff = t};
Console.WriteLine(Toml.WriteString(e));
Trying this:
Getting:
With an empty line as the very first line of the output. Is it possible not to produce it?