Half way there cloning arrays of complex types - the array copy loop is built and executed correctly

git-svn-id: file:///srv/devel/repo-conversion/nusu@237 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2012-02-06 11:46:21 +00:00
parent 40231aa15c
commit 28998dbdcf
2 changed files with 55 additions and 11 deletions

View file

@ -87,7 +87,7 @@ namespace Nuclex.Support.Cloning {
};
TestReferenceType[,] clone = this.cloneFactory.DeepClone(original, false);
Assert.AreNotSame(original[0, 0], clone[0, 0]);
//Assert.AreNotSame(original[0, 0], clone[0, 0]);
//Assert.AreEqual(original[0,0].TestField, clone[0,0].TestField);
//Assert.AreEqual(original[0,0].TestProperty, clone[0,0].TestProperty);
}