Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Project Author: Ivan Ivanov
- * Project Name: Software University Homework
- *
- * This is example comment
- */
- using System;
- class exampleComments
- {
- static void Main()
- {
- // Console.WriteLine("This will not be printed.");
- /*
- Console.WriteLine("Multi-line comments.");
- Console.WriteLine("Multi-line comments.");
- Console.WriteLine("This will not be printed.");
- */
- Console.WriteLine("This will be printed.");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement