I have a 2 instances my class "Person"
public class Person
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public List<Address> PropertyName { get; set; }
}
var pers1 = new Person();
var pers2 = new Person();
Is it possible to copy a specific properties of "pers2" to "pers1" ? Is it possible to copy all properties except one from "pers2" to "pers1" ?
Thanks,