I\'m working on a ASP.NET WebApi (Release Candidate) project where I\'m consuming several DTOs that are marked with the [Serializable] attribute. These DTOs are outside of m
Friends, don't declare properties like this:
public String DiscretionCode { get; set; }
But, create auxiliar vars, like old....
private String discretionCode; public String DiscretionCode { get { return discretionCode;} set { discretionCode = value; } }