Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7721635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:58:24+00:00 2026-06-01T03:58:24+00:00

When I write a method and I want to comment it, I write the

  • 0

When I write a method and I want to comment it, I write the same information into the summary tag.

Example:

/// <summary>
/// Get a <typeparamref name="Customer">customer</typeparamref> by its ID 
/// </summary>
/// <param name="id">customer id</param>
/// <returns>a <typeparamref name="Customer">customer</typeparamref></returns>
private Customer GetCustomerById(string id)
{
   ...
}

Finally, it this really useful? What info provide and in which tag to provide them?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T03:58:25+00:00Added an answer on June 1, 2026 at 3:58 am

    Consider DRY (don’t repeat yourself). The param entry describes the parameter, and the returns entry describes what is returned. The summary should give an overview of what the method does, not repeat the information from those other entries.

    What your documentation is missing is actual documentation. A “string id” is a string that has an ID in it – that is self documenting. But how do I call this method: What comprises a valid user id? What will happen if I pass in a null or empty string? etc.

    Here’s a hypothetical example that includes documentation of what things are for and how to use the method:

    /// <summary> Gets information on a customer </summary>
    ///
    /// <param name='id'> A customer identifier in the form of a GUID string.
    /// e.g. "{D8C447DD-0E7F-4C8B-A3E5-2C6E160D297B}".
    /// Braces around the GUID are optional.
    /// This parameter must be a valid Guid. </param>
    ///
    /// <returns> A Customer record describing the given customer, or
    /// null if the Customer is not found</returns>
    

    If you use a tool like my addin (Atomineer Pro Documentation) then replicating these sort of parameter details around a class is trivial, so it need not be time consuming to document your methods well.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to process the comment input and write back into a TextView. I
I want to re-write a method that has way too many nested if statements.
Give a base class Base , I want to write a method Test, like
OK, I know what you're thinking, "why write a method you do not want
?string.Format(CultureInfo.GetCultureInfo(en-US), {0:d}, now) 4/12/2010 ?string.Format(CultureInfo.GetCultureInfo(fr-FR), {0:d}, now) 12/04/2010 I want to write a method:
I want to write a C# method that can accept any number. Something like:
There's a comment form where I'd want people to be able to write in
I want to write a method for a Java class. The method accepts as
i want to call activity B from Activity A. I want to write method
serial.write() method in pyserial seems to only send string data. I have arrays like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.