I have a base class and derived class and can't seam to use the reflection
tool with this calss. It works fine for some things, but this example
breaks it.
class timeoffReport : Report
{
public string date;
}
class Report
{
public string title;
}
When trying to convert the timeoffReport class to json the system errors
out saying it can't find title in timeoffReport.
Original issue reported on code.google.com by
jeremy.p...@gmail.comon 7 Aug 2009 at 7:00