using System.ComponentModel;
var person = new Person { Name = "Nick", Age = 23 };
var options = new DumpOptions { SortDirection = ListSortDirection.Ascending };
var csDumper = new CSharpDumper(options);
var cs = csDumper.Dump(person);
var vbDumper = new VisualBasicDumper(options);
var vb = vbDumper.Dump(person);
public string Name {get; set;}
public int Age {get; set;}