C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
2
Reply
What are the types of comment in C# ? ?
Pavan Ramamurthy
12y
2.2k
2
Reply
Submit
Three
Mukesh Kumar
7y
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 Ramamurthy
12y
0
Which class that has properties which can only be inherited but cannot be accessible ?
Write a Connection-string applicable for Entity Framework Codefirst and explain how it is recognised
Message