Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

C# output 💬

107K views on YouTube

C# output comment escape sequences

#C #output #tutorial

using System;

namespace MyFirstProgram
{
class Program
{
static void Main(string[] args)
{
Console.Write(“Hey!”);
Console.WriteLine(“Hello!”);

//This is a comment
/*
* this
* is
* a
* multiline
* comment
*/

Console.WriteLine(“BroCode”);

Console.ReadKey();
}
}
}