show/hide this revision's text 3 i before e except after c

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

show/hide this revision's text 2 formatting

Why you need comments. The name of the method should be enough clear that you don't need comments.

Ex:

//  This method is use to retreive information about contact
public getContact()
{
}

In this case getContact doesn't need the comments

show/hide this revision's text 1

Why you need comments. The name of the method should be enough clear that you don't need comments.

Ex:

// This method is use to retreive information about contact public getContact() { }

In this case getContact doesn't need the comments