Visual Studio Extension
Simple Visual Studio Extension for automatically adding [DataMember] and comment summary above class properties based on their names
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; }
}