2
Reply

What are the types of comment in C# ? ?

Pavan R Bhupalam

Pavan R Bhupalam

11y
1.3k
2
Reply

    Three

    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]