Example #1
0
 public void Copy([NotNull] Type type, [CanBeNull] object other)
 {
     ConstructorTestHelpers.Copy(
         type,
         other,
         o => TypeExtensions.Copy(type, o));
 }
Example #2
0
 public void Copy([NotNull] Type type, [CanBeNull] object other)
 {
     ConstructorTestHelpers.Copy(
         type,
         other,
         o =>
     {
         var immediateType = new ImmediateType(type);
         return(immediateType.Copy(o));
     });
 }