Asp.net MVC JavaScriptSerializer: non serializzare proprietà automatich

Immaginiamo di avere il seguente modello: 1 2 3 4 5 6 7 8   public class MyModel { public string Cognome { get; set; } public string Nome { get; set; }   public DateTime DataNascita { get; set; } } public class MyModel { public string Cognome { get; set; } public string […]