
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are the comments in C#?
Comments are used for explaining code. Compilers ignore the comment entries. The multiline comments in C# programs start with /* and terminates with the characters */ as shown below.
Multi-line comments
/* The following is a mult-line comment In C# /*
The /*...*/ is ignored by the compiler and it is put to add comments in the program.
Single line comments
// variable int a = 10;
The following is a sample C# program showing how to add single-line as well as multi-line comments −
Example
using System; namespace Demo { class Program { static void Main(string[] args) { /* I have started learning C# and is my first program */ // displaying text Console.WriteLine("Hello World"); Console.ReadKey(); } } }
Output
Hello World
Advertisements