Exemple #1
0
 /// <summary>
 /// Maps the specified s.
 /// </summary>
 /// <typeparam name="TS">The type of the S.</typeparam>
 /// <typeparam name="TD">The type of the D.</typeparam>
 /// <param name="s">The s.</param>
 /// <param name="d">The d.</param>
 public static void Map <TS, TD>(TS s, TD d)
 {
     PropertyChange[] pcs;
     ObjectMapperT <TS, TD> .Apply(s, d, out pcs);
 }
Exemple #2
0
 /// <summary>
 /// Maps the specified s.
 /// </summary>
 /// <typeparam name="TS">The type of the S.</typeparam>
 /// <typeparam name="TD">The type of the D.</typeparam>
 /// <param name="s">The s.</param>
 /// <param name="d">The d.</param>
 /// <param name="changes">The changes.</param>
 public static void Map <TS, TD>(TS s, TD d, out PropertyChange[] changes)
 {
     ObjectMapperT <TS, TD> .Apply(s, d, out changes);
 }