C Sharp Comments - chrisbitm/python GitHub Wiki
To add Comments in C#, you can use the Single Line Method or the Multi-Line Method.
Single-Line Method
double totalPrice = price + (price * taxRate);
Console.Write(totalPrice)
Multi-Line Method
/*
Main Method
*/
Both Single and Multi-Line Comments can be used to debug code as well