how to set comment to a method
I want to set a comment for a method that I defined it , so ,when i use this method again I want Visual Studio to show the comment that i wrote before (like built in methods).
I tried a format like this
Code Block
// here is method summary
//
// Parameters:
// here the paramethers
public void Any_Method(int Any_Parameters)
{
// method body
}
but this format doesn't work.
if there is a standard format to write the comment on methods to be displayed by Visual Studio or there is another way to do this job.
thanx

