change dump to output in reverse order
Currently if I have a base class with name and age, then inherit from that to add address. Then create a list of these objects, the output is the reverse of what is expected. I would expect the base class members to be first in the results but they are actually last. Example:
void Main()
{
var p = new List<Person>();
p.Add(new Person{ Name = "Joe", Age = 25, Address = "Someplace in Australia."});
p.Add(new Person{ Name = "Ben", Age = 30, Address = "Someplace in Australia."});
p.Dump();
}
class PersonBase
{
public string Name { get; set; }
public int Age { get; set; }
}
class Person : PersonBase
{
public string Address { get; set; }
}
-
There's now an auto-scroll mode on the Edit menu. The shortcut is Shift+Ctrl+E.