2
Reply

What are the types of comment in C# ? ?

Pavan R Bhupalam

Pavan R Bhupalam

Aug 21, 2013
1.3k
2

    Three

    Mukesh Kumar
    September 05, 2017
    0

    1.Single line
    Eg:
    [csharp]   //This is a Single line comment[/csharp]
    2. Multiple line (/* */)
    Eg:
    [csharp] /*This is a multiple line comment
    We are in line 2
    Last line of comment*/[/csharp]
    3.XML Comments (///)
    Eg:
    [csharp]/// summary;
    ///  Set error message for multilingual language.
    /// summary[/csharp]

    Pavan R Bhupalam
    August 21, 2013
    0