Hello,
We are getting an error - "An unhandled exception of type 'System.StackOverflowException' occurred in System.Core.dll" when trying to clone either an object directly (for unit testing) or anything that has an object property:
public class MyClass
{
public string StringProperty { get; set; }
public int IntProperty { get; set; }
public object ObjectProperty { get; set; }
public DateTime DateTimeProperty { get; set; }
}
[assembly: AssemblyFileVersion("0.5.1884.705")]
[assembly: AssemblyInformationalVersion("0.5.11")]