c# comment block code example
Example 1: comment in c#
// This is a single line comment in C#.
/* This is a
multi line comment
in C#
*/
Example 2: comments in c#
// Single Line Comment
/*
Multiline
Comments
*/
Example 3: comment out code visual studio
Ctrl+K+C
Ctrl+K+U
Example 4: c# multiline comment
/*Statements
and more statements */
Code