Passing complex object arrays isn't the most trivial thing.
My proof of concept contract:
public interface IDataResult : IContract
{
string Name { get; set; }
int? Age { get; set; }
IArrayContract<IDataResult> Children { get; }
}
IDataResult[] Children { get; } resulted in a SerializationException.
Any help would be appreciated
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.