Why you need comments. The name of the method should be enough clear enough that you don't need comments.
Ex:
// This method is use used to retreive retrieve information about contact
public getContact()
{
}
In this case getContact doesn't need the comments
