Answers for "c# comment"

C#
1

c# comment

// for single line comments  
/* for multi line comments */  
/// XML tags displayed in a code comment
Posted by: Guest on July-03-2021
1

c# comment

//This Is A Comment
//Comments don't change what
//Happens in the code, but they
//Help you understand your own code,
//So you can make more changes.

//To make a comment, use a "//" then 
//Whatever your comment is.
Posted by: Guest on July-16-2021
4

comments in c#

// Single Line Comment

/* 
Multiline
Comments
*/
Posted by: Guest on July-19-2020

C# Answers by Framework

Browse Popular Code Answers by Language