PM> Install-Package NBuilder
note: EducationInformation class itself have lots of string properties
var rootObject = new RootObject()
{
EducationInformation = Builder.CreateNew().Build(),
PersonalInformation = Builder.CreateNew().Build(),
PositionsInformation = Builder.CreateNew().Build()
};
sample final JSON output: all with property name and a number
"graduateDegree":"graduateDegree1","academicDiscipline":"academicDiscipline1"
note: i do not know why using the following command returns null for all internal classes
RootObject rootObject = Builder.CreateNew().Build()