Consider the known employee/manager relation ship
public class Employee
{
public Employee manager;
public List<Employee> employees;
}
what i want is a way to marshall an employee such that all the child employees will be marshalled, the parent manager employee also be marshalled. without an infinite cycle loop.