Open fpintos opened 7 years ago
Hi, thanks for looking at this.
One simple example I have is a data type that is generated by wsdl, like this:
public partial class WorkTimeSlot {
public int StartTimeInMinutes;
public int EndTimeInMinutes;
}
The output goes like this (with namespaces removed and the expression simplified):
var timeSlots = new WorkTimeSlot
{
};
In other types, public fields that are arrays do seem to be picked up.
The option in the UI was for private fields not public fields. Could you give an example of the object you are attempting to export and what the object exporter output was?