top of page
Admin

C# Writeline vs Write


Write is used to output data without adding a newline character, while Writeline adds a newline character after the output




Console.Write("C#");
Console.Write("Programming");
// Output C#Programming
Console.WriteLine("C#");
Console.WriteLine("Programming");
// Output
// C#
// Programming

3 views0 comments

Recent Posts

See All

Komentáře

Hodnoceno 0 z 5 hvězdiček.
Zatím žádné hodnocení

Přidejte hodnocení
bottom of page