I have 2 interfaces IA and IB.
public interface IA { IB InterfaceB { get; set; } } public interface IB { IA InterfaceA { get; set; } void Set
Assuming you don't want to serialize the interface property, place the following attribute
[NonSerialized]
on the interface property.