Single Line and Multi Line Comment Example in C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
#region testregion

public partial class Form1 : Form
{
// Single Line Comment Test
public Form1()
{
InitializeComponent();
}
/*
This is a Multiline
Comment test
*/
private void Form1_Load(object sender, EventArgs e)
{
Debug.WriteLine("This is a test message");
}
}
#endregion
}