Comments in C#
There is an explanation functionality for the person who wrote the code or will use it later. The system does not see them as transactions.
using System.IO;
using System;
class Program {
static void Main() {
// This is a Single Line Comment
/* This is a
Multi Line Comment */
}
}
Comments
Post a Comment