C# output

Your video will begin in 10
63 Views
Published
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();
}
}
}
Category
Bro Code
Tags
C# (Programming Language), Tutorial (Media Genre), Input/output
Be the first to comment