| Mark Pearl |
I have just gotten involved in a project that has been around for a while but developed with a different methodology to the one I am used to. One of the first things I noticed is that there were very little comments if any in the project. When bringing this up with one of the other developers on the team he defended the position of having no comments because as a team they felt that comments were an anti pattern. The motivation was as follows… Motivation 1) We name our methods and parameters so that they have meaning…
public class PersonWithComments
{
///
/// Makes a person class
///
/// This needs to be the full name
public PersonWithComments(string name)
{
}
} In the above code...(Read whole news on source site)




