This method should do what you require:
public static void Apply<T>(T originalValuesObj, T newValuesObj, params string[] ignore)
where T : class
{
// check for null arguments
if (originalValuesObj == null || newValuesObj == null)
{
throw new ArgumentNullException(originalValuesObj == null ? "from" : "to");
}
// working variable(s)
Type type = typeof(T);
List<string> ignoreList = new List<string>(ignore ?? new string[] { });
// iterate through each of the properties on the object
foreach (PropertyInfo pi in type.GetProperties(BindingFlags.Public | BindingFlags.Instance))
{
// check whether we should be ignoring this property
if (ignoreList.Contains(pi.Name))
{
continue;
}
// set the value in the original object
object toValue = type.GetProperty(pi.Name).GetValue(newValuesObj, null);
type.GetProperty(pi.Name).SetValue(originalValuesObj, toValue, null);
}
return;
}