Simple Visual Studio Extension for automatically adding [DataMember] and comment summary above class properties based on their names
[DataMember]
Input
public class ClassName { public string GreekAddress { get; set; } }
Output
public class ClassName { /// <summary> /// Greek Address /// </summary> [DataMember(Name = "greekAddress")] public string GreekAddress { get; set; } }
https://github.com/loukaspd/XmlSummaryCommentsGenerator