private static BenchDestinationProps.Int1 Map(BenchSourceProps.Int1 s, BenchDestinationProps.Int1 d)
 {
     if (s == null)
     {
         return(null);
     }
     if (d == null)
     {
         d = new BenchDestinationProps.Int1();
     }
     d.i    = s.i;
     d.str1 = s.str1;
     d.str2 = s.str2;
     return(d);
 }
 private static BenchDestinationProps.Int1 Map(BenchSourceProps.Int1 s, BenchDestinationProps.Int1 d)
 {
     if (s == null)
     {
         return null;
     }
     if (d == null)
     {
         d = new BenchDestinationProps.Int1();
     }
     d.i = s.i;
     d.str1 = s.str1;
     d.str2 = s.str2;
     return d;
 }